Error & Status Codes
Response statuses declared by REST API operations.
200
GET /analysis/properties/annotation
Successful Response
{
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Response List Annotation Properties",
"type": "array"
}
}
}
GET /analysis/properties/text
Successful Response
{
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Response List Text Properties",
"type": "array"
}
}
}
GET /analysis/properties/visual
Successful Response
{
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Response List Visual Properties",
"type": "array"
}
}
}
POST /auth/accept-invitation
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/MeResponse"
}
}
}
GET /auth/me
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/MeResponse"
}
}
}
POST /auth/token
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TokenResponse"
}
}
}
GET /branding
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrandingResponse"
}
}
}
PUT /branding
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/BrandingResponse"
}
}
}
GET /check-suggestions
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuggestionResponse"
}
}
}
GET /dataset-versions/{version_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetDatasetVersionResponse"
}
}
}
GET /datasets
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_DatasetResponse_"
}
}
}
GET /datasets/{dataset_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetResponse"
}
}
}
PATCH /datasets/{dataset_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetResponse"
}
}
}
GET /datasets/{dataset_id}/audit
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/AuditEntryResponse"
},
"title": "Response Get Dataset Audit Trail",
"type": "array"
}
}
}
GET /datasets/{dataset_id}/available-checks
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetSelectableChecksResponse"
}
}
}
GET /datasets/{dataset_id}/download-url
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/PresignedUrlResponse"
}
}
}
POST /datasets/{dataset_id}/query
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/QueryResponse"
}
}
}
POST /datasets/{dataset_id}/rows/commit
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RowOperationResponse"
}
}
}
POST /datasets/{dataset_id}/rows/delete
Successful Response
{
"application/json": {
"schema": {
"items": {
"type": "string"
},
"title": "Response Delete Dataset Rows",
"type": "array"
}
}
}
POST /datasets/{dataset_id}/rows/insert
Successful Response
{
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Response Insert Dataset Rows",
"type": "array"
}
}
}
PATCH /datasets/{dataset_id}/rows/update
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"title": "Response Update Dataset Rows",
"type": "object"
}
}
}
GET /datasets/{dataset_id}/schema
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SchemaResponse"
}
}
}
GET /datasets/{dataset_id}/snapshots
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/SnapshotResponse"
},
"title": "Response List Dataset Snapshots",
"type": "array"
}
}
}
GET /datasets/{dataset_id}/versions
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_DatasetVersionResponse_"
}
}
}
GET /datasets/{dataset_id}/versions/quality-checks
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/DatasetQualityVerdictResponse"
},
"title": "Response List Latest Quality Verdicts",
"type": "array"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/AnalysisRunResponse"
},
"title": "Response List Analysis Runs",
"type": "array"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs/{run_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/AnalysisRunResponse"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/annotation/query
Successful Response
{
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Response Query Annotation Analysis Properties",
"type": "array"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/text
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TextAnalysisResult"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/text/query
Successful Response
{
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Response Query Text Analysis Properties",
"type": "array"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/visual
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/VisualAnalysisResult"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/visual/query
Successful Response
{
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Response Query Visual Analysis Properties",
"type": "array"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/available-metrics
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetVersionAvailableMetricsResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/availability
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetClustersAvailability"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/latest
Successful Response
{
"application/json": {
"schema": {
"anyOf": [
{
"$ref": "#/components/schemas/DatasetClustersRun"
},
{
"type": "null"
}
],
"title": "Response Get Latest Cluster Run"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetClustersRun"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}/result
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetClustersResult"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/demote
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetVersionResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetDimensionsResponse"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/dimensions/query
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetDimensionsQueryResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions/values
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DimensionValuesResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/download
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/PresignedUrlResponse"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/map
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetVersionResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/partitions
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PartitionResponse"
},
"title": "Response List Partitions",
"type": "array"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}/available-metrics
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/PartitionAvailableMetricsResponse"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}/resolve
Successful Response
{
"application/json": {
"schema": {
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/SessionPartition"
},
{
"$ref": "#/components/schemas/TracePartition"
},
{
"$ref": "#/components/schemas/SpanPartition"
}
]
},
"title": "Response Resolve Partition Endpoint",
"type": "array"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/promote
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetVersionResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetQualityVerdictResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_DataOperationRunResponse_"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs/{run_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DataOperationRunResponse"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/quality-checks:run
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetQualityVerdictResponse"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/query
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/QueryResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/topology
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TopologyGraph"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceEnrichmentStatusResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment/results
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Get Trace Enrichment Results",
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/trace-enrichment:recompute
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceEnrichmentStatusResponse"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-tags
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TraceTagResponse"
},
"title": "Response List Trace Tags",
"type": "array"
}
}
}
PUT /datasets/{dataset_id}/versions/{version_id}/trace-tags
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TraceTagResponse"
},
"title": "Response Upsert Trace Tags",
"type": "array"
}
}
}
GET /embedding-configs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_EmbeddingConfigResponse_"
}
}
}
GET /embedding-configs/{config_ref}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/EmbeddingConfigResponse"
}
}
}
GET /eval-configs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_EvalConfigResponse_"
}
}
}
GET /eval-configs/{eval_config_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/EvalConfigResponse"
}
}
}
PUT /eval-configs/{eval_config_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/EvalConfigResponse"
}
}
}
GET /examples/versions/{version}/download
Successful Response
{
"application/json": {
"schema": {}
}
}
POST /internal/auth/verify
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/VerifyResponse"
}
}
}
GET /judges
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_JudgeConnectionResponse_"
}
}
}
GET /judges/{judge_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/JudgeConnectionResponse"
}
}
}
PATCH /judges/{judge_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/JudgeConnectionResponse"
}
}
}
POST /judges/{judge_id}/test
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/JudgeTestResult"
}
}
}
GET /live
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/LiveResponse"
}
}
}
GET /metric-configs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_MetricConfigSummary_"
}
}
}
GET /metric-configs/{config_name}/{config_version}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/MetricConfigResponse"
}
}
}
PUT /metric-configs/{config_name}/{config_version}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/MetricConfigResponse"
}
}
}
GET /notifications/config
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_NotificationConfigResponse_"
}
}
}
GET /ops
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/OpCatalogue"
}
}
}
GET /ops/registry
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegistryListResponse"
}
}
}
GET /ops/registry/{name}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegistryOpView"
}
}
}
GET /ops/{name}/schema
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/OpSchemaResponse"
}
}
}
GET /projects
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_ProjectListItem_"
}
}
}
GET /projects/{project_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProjectResponse"
}
}
}
PATCH /projects/{project_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProjectPatchResponse"
}
}
}
GET /projects/{project_id}/coverage
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Get Coverage",
"type": "object"
}
}
}
POST /projects/{project_id}/move
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProjectResponse"
}
}
}
DELETE /projects/{project_id}/test-plan
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProjectResponse"
}
}
}
POST /projects/{project_id}/test-plan
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProjectPatchResponse"
}
}
}
PUT /projects/{project_id}/test-plan
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProjectPatchResponse"
}
}
}
POST /projects/{project_id}/trend
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Get Trend",
"type": "object"
}
}
}
GET /ready
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReadyResponse"
}
}
}
GET /report-configs
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/ReportConfigSummary"
},
"title": "Response List Configs",
"type": "array"
}
}
}
GET /report-configs/template
Successful Response
{
"text/plain": {
"schema": {
"type": "string"
}
}
}
GET /report-configs/{config_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportConfigResponse"
}
}
}
GET /report-settings
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportSettingsResponse"
}
}
}
PUT /report-settings
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportSettingsResponse"
}
}
}
GET /report-settings/prompts
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/ReportSectionPromptResponse"
},
"title": "Response List Report Section Prompts",
"type": "array"
}
}
}
GET /report-settings/prompts/{section_key}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportSectionPromptResponse"
}
}
}
PUT /report-settings/prompts/{section_key}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportSectionPromptResponse"
}
}
}
GET /reports
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_ReportSummary_"
}
}
}
GET /reports/questions/{run_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/QuestionSchemaResponse"
}
}
}
GET /reports/{report_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportResponse"
}
}
}
GET /reports/{report_id}/content
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportContentResponse"
}
}
}
PUT /reports/{report_id}/content
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportContentResponse"
}
}
}
GET /reports/{report_id}/content-url
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportContentUrlResponse"
}
}
}
GET /reports/{report_id}/content/{key}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportSectionContent"
}
}
}
DELETE /reports/{report_id}/content/{section_key}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportContentResponse"
}
}
}
GET /reports/{report_id}/download
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportDownloadResponse"
}
}
}
POST /reports/{report_id}/export
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportDownloadResponse"
}
}
}
POST /reports/{report_id}/regenerate
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportResponse"
}
}
}
GET /reports/{run_id}/partitions
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PartitionResponse"
},
"title": "Response Get Report Run Partitions",
"type": "array"
}
}
}
GET /reports/{run_id}/partitions/metrics
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"title": "Response Get Report Run Partition Metrics",
"type": "object"
}
}
}
GET /runs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_RunResponse_"
}
}
}
GET /runs/diff
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunDiffResponse"
}
}
}
GET /runs/diff/export
Successful Response
{
"application/json": {
"schema": {}
}
}
GET /runs/diff/row
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunDiffRowResponse"
}
}
}
GET /runs/diff/row/image
Successful Response
GET /runs/queue
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Queue Status",
"type": "object"
}
}
}
GET /runs/{run_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunResponse"
}
}
}
GET /runs/{run_id}/analysis
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Get Run Analysis Endpoint",
"type": "object"
}
}
}
POST /runs/{run_id}/cancel
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunResponse"
}
}
}
GET /runs/{run_id}/events
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/RunEventResponse"
},
"title": "Response Get Run Events",
"type": "array"
}
}
}
GET /runs/{run_id}/parquet-url
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Get Run Parquet Url",
"type": "object"
}
}
}
POST /runs/{run_id}/query
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Query Run Output",
"type": "object"
}
}
}
GET /runs/{run_id}/results
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Get Run Results Endpoint",
"type": "object"
}
}
}
POST /runs/{run_id}/results/query
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunResultsQueryResponse"
}
}
}
GET /runs/{run_id}/sessions/{parent_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunSessionResponse"
}
}
}
GET /sdg/adapters
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_SdgAdapterResponse_"
}
}
}
GET /sdg/adapters/{adapter_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SdgAdapterResponse"
}
}
}
GET /sdk/versions
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SdkVersionsResponse"
}
}
}
GET /sdk/versions/{version}/download
Successful Response
{
"application/json": {
"schema": {}
}
}
GET /suts
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_SutResponse_"
}
}
}
GET /suts/templates
Successful Response
{
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response List Templates",
"type": "object"
}
}
}
GET /suts/{sut_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SutResponse"
}
}
}
PATCH /suts/{sut_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SutResponse"
}
}
}
GET /suts/{sut_id}/connections
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/ConnectionResponse"
},
"title": "Response List Connections",
"type": "array"
}
}
}
PATCH /suts/{sut_id}/connections/{connection_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConnectionResponse"
}
}
}
GET /suts/{sut_id}/connections/{connection_id}/adapter
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/AdapterResponse"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter/validate
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/AdapterValidateResult"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/test
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConnectionTestResult"
}
}
}
GET /suts/{sut_id}/runs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_dict_str__Any__"
}
}
}
GET /templates
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TemplateSummary"
},
"title": "Response List Templates",
"type": "array"
}
}
}
GET /templates/{name}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TemplateDetail"
}
}
}
GET /test-packages/recommendations
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TestPackageRecommendation"
},
"title": "Response List Test Package Recommendations",
"type": "array"
}
}
}
GET /test-packages/recommendations/{recommendation_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestPackageRecommendation"
}
}
}
PUT /test-packages/recommendations/{recommendation_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestPackageRecommendation"
}
}
}
GET /test-plans
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_TestPlanSummaryResponse_"
}
}
}
GET /test-plans/{ref}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestPlanDetailResponse"
}
}
}
GET /test-plans/{ref}/versions
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestPlanVersionPage"
}
}
}
GET /test-plans/{ref}/versions/{version}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestPlanDetailResponse"
}
}
}
GET /traces/connections
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TraceSourceConnectionResponse"
},
"title": "Response List Connections",
"type": "array"
}
}
}
POST /traces/conventions:detect
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceConventionDetectionResponse"
}
}
}
GET /traces/runs/{run_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceIngestRunResponse"
}
}
}
GET /traces/runs/{run_id}/drops
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceIngestRunDropsResponse"
}
}
}
POST /traces/uploads/{upload_id}:detect
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceConventionDetectionResponse"
}
}
}
GET /traces/versions/{version_id}/drops
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TraceDropRecordResponse"
},
"title": "Response List Version Drops",
"type": "array"
}
}
}
GET /traces/versions/{version_id}/ground-truth
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceGroundTruthResponse"
}
}
}
POST /traces/versions/{version_id}:promote
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceCurrentVersionResponse"
}
}
}
GET /users
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_UserResponse_"
}
}
}
GET /users/{user_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserResponse"
}
}
}
PATCH /users/{user_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserResponse"
}
}
}
POST /users/{user_id}/deactivate
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserResponse"
}
}
}
GET /users/{user_id}/memberships
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/UserMembershipResponse"
},
"title": "Response Get User Memberships",
"type": "array"
}
}
}
POST /users/{user_id}/reactivate
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserResponse"
}
}
}
POST /users/{user_id}/reset-password
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserResponse"
}
}
}
POST /users/{user_id}/reset-token
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ResetTokenResponse"
}
}
}
GET /workspaces
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_WorkspaceListItem_"
}
}
}
GET /workspaces/{workspace_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceResponse"
}
}
}
PATCH /workspaces/{workspace_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceResponse"
}
}
}
GET /workspaces/{workspace_id}/custom_ops
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomOpsListResponse"
}
}
}
POST /workspaces/{workspace_id}/custom_ops
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomOpPublishResponse"
}
}
}
GET /workspaces/{workspace_id}/custom_ops/{name}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomOpDetailResponse"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomOpRedeployResponse"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}/stop
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomOpStopResponse"
}
}
}
PUT /workspaces/{workspace_id}/embedding-config
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceResponse"
}
}
}
GET /workspaces/{workspace_id}/invitations
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/InvitationResponse"
},
"title": "Response List Invitations",
"type": "array"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/resend
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateInvitationResponse"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/revoke
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/InvitationResponse"
}
}
}
GET /workspaces/{workspace_id}/members
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/WorkspaceMemberResponse"
},
"title": "Response List Members",
"type": "array"
}
}
}
PATCH /workspaces/{workspace_id}/members/{user_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceMemberResponse"
}
}
}
GET /workspaces/{workspace_id}/metric-config-defaults/
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceMetricConfigDefaultListResponse"
}
}
}
GET /workspaces/{workspace_id}/metric-config-defaults/{metric_name}/versions/
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceMetricConfigDefaultVersionsResponse"
}
}
}
GET /workspaces/{workspace_id}/metric-configs/resolved
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/MetricConfigResolutionListResponse"
}
}
}
GET /workspaces/{workspace_id}/metrics
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceMetricCatalogue"
}
}
}
GET /workspaces/{workspace_id}/secrets
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_WorkspaceSecretResponse_"
}
}
}
GET /workspaces/{workspace_id}/secrets/{secret_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceSecretResponse"
}
}
}
PATCH /workspaces/{workspace_id}/secrets/{secret_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceSecretResponse"
}
}
}
POST /workspaces/{workspace_id}/secrets/{secret_id}/reveal
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceSecretRevealResponse"
}
}
}
GET /workspaces/{workspace_id}/user-candidates
Successful Response
{
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/WorkspaceUserCandidateResponse"
},
"title": "Response List User Candidates",
"type": "array"
}
}
}
201
POST /datasets/upload
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetResponse"
}
}
}
POST /datasets/{dataset_id}/dimensions:assign
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/AssignDimensionResponse"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/AnalysisRunResponse"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/PartitionResponse"
}
}
}
POST /embedding-configs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/EmbeddingConfigResponse"
}
}
}
POST /eval-configs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/EvalConfigResponse"
}
}
}
POST /judges
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/JudgeConnectionResponse"
}
}
}
POST /metric-configs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/MetricConfigResponse"
}
}
}
POST /notifications/config
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/NotificationConfigResponse"
}
}
}
POST /ops
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegistryOpView"
}
}
}
POST /projects
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProjectCreateResponse"
}
}
}
POST /report-configs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportConfigResponse"
}
}
}
POST /reports/{run_id}
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReportResponse"
}
}
}
POST /sdg/adapters
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SdgAdapterResponse"
}
}
}
POST /suts
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SutResponse"
}
}
}
POST /suts/{sut_id}/connections
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConnectionResponse"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/AdapterResponse"
}
}
}
POST /test-packages/recommendations
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestPackageRecommendation"
}
}
}
POST /test-plans
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestPlanResponse"
}
}
}
POST /test-plans/{ref}/versions
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TestPlanResponse"
}
}
}
POST /traces/connections
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceSourceConnectionResponse"
}
}
}
POST /traces/uploads
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceUploadResponse"
}
}
}
POST /traces/versions/{version_id}/ground-truth
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceGroundTruthVersionResponse"
}
}
}
POST /users
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserResponse"
}
}
}
POST /workspaces
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceResponse"
}
}
}
POST /workspaces/{workspace_id}/invitations
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateInvitationResponse"
}
}
}
POST /workspaces/{workspace_id}/members
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceMemberResponse"
}
}
}
POST /workspaces/{workspace_id}/metric-config-defaults/
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceMetricConfigDefaultListResponse"
}
}
}
POST /workspaces/{workspace_id}/metric-configs/{config_name}/versions
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/MetricConfigResponse"
}
}
}
POST /workspaces/{workspace_id}/ops
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegistryOpView"
}
}
}
POST /workspaces/{workspace_id}/secrets
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceSecretResponse"
}
}
}
POST /workspaces/{workspace_id}/users
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/WorkspaceMemberResponse"
}
}
}
202
POST /datasets/{dataset_id}/versions/{version_id}/cluster-runs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/DatasetClustersRun"
}
}
}
POST /runs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunResponse"
}
}
}
POST /runs/{run_id}/rerun
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunResponse"
}
}
}
PUT /runs/{run_id}/upload
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/RunResponse"
}
}
}
POST /sdg/adapters/{adapter_id}/runs
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/SdgRunResponse"
}
}
}
POST /traces/connections/{connection_id}/land
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceIngestRunResponse"
}
}
}
POST /traces/land
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceIngestRunResponse"
}
}
}
POST /traces/land:inline
Successful Response
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/TraceIngestRunResponse"
}
}
}
204
POST /auth/logout
Successful Response
DELETE /datasets/{dataset_id}
Successful Response
DELETE /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}
Successful Response
DELETE /datasets/{dataset_id}/versions/{version_id}/trace-tags
Successful Response
DELETE /eval-configs/{eval_config_id}
Successful Response
DELETE /judges/{judge_id}
Successful Response
DELETE /metric-configs/{config_name}/{config_version}
Successful Response
DELETE /notifications/config/{notification_config_id}
Successful Response
DELETE /report-configs/{config_id}
Successful Response
DELETE /report-settings/prompts/{section_key}
Successful Response
DELETE /suts/{sut_id}
Successful Response
DELETE /suts/{sut_id}/connections/{connection_id}
Successful Response
DELETE /test-packages/recommendations/{recommendation_id}
Successful Response
DELETE /workspaces/{workspace_id}
Successful Response
DELETE /workspaces/{workspace_id}/custom_ops/{name}
Successful Response
DELETE /workspaces/{workspace_id}/members/{user_id}
Successful Response
DELETE /workspaces/{workspace_id}/secrets/{secret_id}
Successful Response
304
GET /branding
Branding unchanged since the caller's If-None-Match
400
POST /datasets/upload
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/download-url
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/query
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/commit
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/delete
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/insert
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}/rows/update
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/query
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /judges
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /judges/{judge_id}
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /ops
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/export
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /sdg/adapters/{adapter_id}/runs
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /suts/{sut_id}
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /suts/{sut_id}/connections/{connection_id}
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter/validate
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/test
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}/versions
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/connections
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land:inline
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/custom_ops
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/custom_ops/{name}
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}/stop
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/ops
Bad Request
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
401
POST /auth/accept-invitation
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /auth/me
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /auth/token
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/upload
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/audit
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/available-checks
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/dimensions:assign
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/download-url
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/query
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/commit
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/delete
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/insert
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}/rows/update
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/schema
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/snapshots
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/quality-checks
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs/{run_id}
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/annotation
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/annotation/query
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/schema
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/text
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/text/query
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/visual
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/visual/query
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/available-metrics
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/demote
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/dimensions/query
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions/values
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/download
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/map
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/promote
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs/{run_id}
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/quality-checks:run
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/query
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment/results
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/trace-enrichment:recompute
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /internal/auth/verify
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /runs/{run_id}/upload
Unauthorized
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
403
POST /auth/accept-invitation
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/upload
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/audit
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/available-checks
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/dimensions:assign
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/download-url
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/query
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/commit
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/delete
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/insert
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}/rows/update
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/schema
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/snapshots
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/quality-checks
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs/{run_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/annotation
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/annotation/query
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/schema
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/text
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/text/query
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/visual
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/visual/query
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/available-metrics
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/cluster-runs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/availability
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/latest
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}/result
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/demote
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/dimensions/query
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions/values
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/download
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/map
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/partitions
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}/available-metrics
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}/resolve
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/promote
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs/{run_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/quality-checks:run
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/query
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/topology
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment/results
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/trace-enrichment:recompute
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}/versions/{version_id}/trace-tags
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-tags
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /datasets/{dataset_id}/versions/{version_id}/trace-tags
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /embedding-configs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /embedding-configs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /embedding-configs/{config_ref}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /eval-configs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /eval-configs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /eval-configs/{eval_config_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /eval-configs/{eval_config_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /eval-configs/{eval_config_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /judges
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /judges
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /judges/{judge_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /judges/{judge_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /judges/{judge_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /judges/{judge_id}/test
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /metric-configs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /metric-configs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /metric-configs/{config_name}/{config_version}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /metric-configs/{config_name}/{config_version}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /metric-configs/{config_name}/{config_version}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /notifications/config
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /notifications/config
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /notifications/config/{notification_config_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /ops
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /ops
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /ops/registry
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /ops/registry/{name}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /ops/{name}/schema
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /projects
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /projects/{project_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /projects/{project_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /projects/{project_id}/coverage
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects/{project_id}/move
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects/{project_id}/trend
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /report-settings
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /report-settings/prompts/{section_key}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /report-settings/prompts/{section_key}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/questions/{run_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /reports/{run_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{run_id}/partitions
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/export
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/row
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/row/image
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/analysis
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/cancel
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/events
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/parquet-url
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/query
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/rerun
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/results
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/results/query
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/sessions/{parent_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /sdg/adapters
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /sdg/adapters
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /sdg/adapters/{adapter_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /sdg/adapters/{adapter_id}/runs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /suts/{sut_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /suts/{sut_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}/connections
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /suts/{sut_id}/connections/{connection_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /suts/{sut_id}/connections/{connection_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}/connections/{connection_id}/adapter
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter/validate
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/test
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}/runs
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-packages/recommendations
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /test-packages/recommendations/{recommendation_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /test-packages/recommendations/{recommendation_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-plans
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}/versions
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-plans/{ref}/versions
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}/versions/{version}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /traces/connections
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/connections
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/connections/{connection_id}/land
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land:inline
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/uploads
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/uploads/{upload_id}:detect
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/versions/{version_id}/ground-truth
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/versions/{version_id}:promote
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /users
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /users/{user_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /users/{user_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/deactivate
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /users/{user_id}/memberships
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/reactivate
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/reset-password
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/reset-token
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/custom_ops
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/custom_ops
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/custom_ops/{name}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/custom_ops/{name}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}/stop
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/invitations
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/resend
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/revoke
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/members
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/members
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/members/{user_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/members/{user_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metric-config-defaults/
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/metric-config-defaults/
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metric-config-defaults/{metric_name}/versions/
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metric-configs/resolved
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/metric-configs/{config_name}/versions
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metrics
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/ops
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/secrets
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/secrets
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/secrets/{secret_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/secrets/{secret_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/secrets/{secret_id}
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/secrets/{secret_id}/reveal
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/user-candidates
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/users
Forbidden
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
404
POST /auth/accept-invitation
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /check-suggestions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/upload
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/audit
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/available-checks
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/dimensions:assign
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/download-url
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/query
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/commit
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/delete
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/insert
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}/rows/update
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/schema
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/snapshots
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/quality-checks
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs/{run_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/annotation
Not Found
{
"application/json": {
"schema": {}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/annotation/query
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/schema
Not Found
{
"application/json": {
"schema": {}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/text
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/text/query
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/visual
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/visual/query
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/available-metrics
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/cluster-runs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/availability
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/latest
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}/result
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/demote
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/dimensions/query
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions/values
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/download
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/map
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/partitions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}/available-metrics
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}/resolve
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/promote
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs/{run_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/quality-checks:run
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/query
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/topology
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment/results
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/trace-enrichment:recompute
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}/versions/{version_id}/trace-tags
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-tags
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /datasets/{dataset_id}/versions/{version_id}/trace-tags
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /embedding-configs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /embedding-configs/{config_ref}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /eval-configs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /eval-configs/{eval_config_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /eval-configs/{eval_config_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /eval-configs/{eval_config_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /judges
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /judges/{judge_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /judges/{judge_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /judges/{judge_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /judges/{judge_id}/test
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /metric-configs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /metric-configs/{config_name}/{config_version}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /metric-configs/{config_name}/{config_version}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /metric-configs/{config_name}/{config_version}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /notifications/config
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /notifications/config/{notification_config_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /ops/registry/{name}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /ops/{name}/schema
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /projects/{project_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /projects/{project_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /projects/{project_id}/coverage
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects/{project_id}/move
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects/{project_id}/trend
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /report-settings/prompts/{section_key}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/questions/{run_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}/content
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /reports/{report_id}/content
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}/content-url
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}/content/{key}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /reports/{report_id}/content/{section_key}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}/download
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /reports/{report_id}/export
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /reports/{report_id}/regenerate
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /reports/{run_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{run_id}/partitions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/export
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/row
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/row/image
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/analysis
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/cancel
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/events
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/parquet-url
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/query
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/rerun
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/results
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/results/query
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/sessions/{parent_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /runs/{run_id}/upload
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /sdg/adapters
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /sdg/adapters/{adapter_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /sdg/adapters/{adapter_id}/runs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /sdk/versions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /sdk/versions/{version}/download
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /suts/{sut_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /suts/{sut_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}/connections
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /suts/{sut_id}/connections/{connection_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /suts/{sut_id}/connections/{connection_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}/connections/{connection_id}/adapter
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter/validate
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/test
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}/runs
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /templates/{name}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-packages/recommendations
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /test-packages/recommendations/{recommendation_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-packages/recommendations/{recommendation_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /test-packages/recommendations/{recommendation_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-plans
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}/versions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-plans/{ref}/versions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}/versions/{version}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/connections/{connection_id}/land
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land:inline
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /traces/runs/{run_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /traces/runs/{run_id}/drops
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/uploads/{upload_id}:detect
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /traces/versions/{version_id}/drops
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /traces/versions/{version_id}/ground-truth
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/versions/{version_id}/ground-truth
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/versions/{version_id}:promote
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /users/{user_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /users/{user_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/deactivate
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /users/{user_id}/memberships
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/reactivate
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/reset-password
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/reset-token
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/custom_ops/{name}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/custom_ops/{name}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}/stop
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/resend
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/revoke
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/members
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/members
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/members/{user_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/members/{user_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metric-config-defaults/
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/metric-config-defaults/
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metric-config-defaults/{metric_name}/versions/
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metric-configs/resolved
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/metric-configs/{config_name}/versions
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/secrets
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/secrets
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/secrets/{secret_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/secrets/{secret_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/secrets/{secret_id}
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/secrets/{secret_id}/reveal
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/user-candidates
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/users
Not Found
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
409
POST /auth/accept-invitation
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/upload
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/dimensions:assign
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/commit
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/delete
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/insert
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}/rows/update
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/cluster-runs
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}/result
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/trace-enrichment:recompute
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /embedding-configs
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /eval-configs
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /eval-configs/{eval_config_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /judges
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /judges/{judge_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /metric-configs
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /metric-configs/{config_name}/{config_version}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /metric-configs/{config_name}/{config_version}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /ops
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects/{project_id}/move
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}/content-url
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}/download
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /reports/{report_id}/regenerate
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /reports/{run_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/export
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/row
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/row/image
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/analysis
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/cancel
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /sdg/adapters
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /suts
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /suts/{sut_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /suts/{sut_id}/connections/{connection_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-packages/recommendations
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /test-packages/recommendations/{recommendation_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-plans
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-plans/{ref}/versions
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/connections
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/connections/{connection_id}/land
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land:inline
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /users/{user_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/reset-password
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/custom_ops
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/resend
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/revoke
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/members
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/metric-config-defaults/
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/metric-configs/{config_name}/versions
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/ops
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/secrets
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/secrets/{secret_id}
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/users
Conflict
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
413
POST /test-plans
Content Too Large
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /test-plans/{ref}/versions
Content Too Large
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/uploads
Content Too Large
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
415
GET /runs/diff/row/image
Unsupported Media Type
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
422
GET /analysis/properties/annotation
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /analysis/properties/text
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /analysis/properties/visual
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /auth/accept-invitation
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /auth/me
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /auth/token
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /branding
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /check-suggestions
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /dataset-versions/{version_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/upload
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /datasets/{dataset_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /datasets/{dataset_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/audit
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/available-checks
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/dimensions:assign
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/download-url
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/query
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/rows/commit
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/rows/delete
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/rows/insert
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /datasets/{dataset_id}/rows/update
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/schema
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/snapshots
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/quality-checks
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis-runs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis-runs/{run_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/annotation
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/annotation/query
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/schema
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/text
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/text/query
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/analysis/visual
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/analysis/visual/query
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/available-metrics
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/cluster-runs
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/availability
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/latest
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/cluster-runs/{run_id}/result
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/demote
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/dimensions/query
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/dimensions/values
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/download
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/map
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/partitions
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}/available-metrics
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/partitions/{partition_id}/resolve
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/promote
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/quality-checks/runs/{run_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/quality-checks:run
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/query
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/topology
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-enrichment/results
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/trace-enrichment:recompute
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /datasets/{dataset_id}/versions/{version_id}/trace-tags
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /datasets/{dataset_id}/versions/{version_id}/trace-tags
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /datasets/{dataset_id}/versions/{version_id}/trace-tags
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /embedding-configs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /embedding-configs
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /embedding-configs/{config_ref}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /eval-configs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /eval-configs
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /eval-configs/{eval_config_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /eval-configs/{eval_config_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /eval-configs/{eval_config_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /examples/versions/{version}/download
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /internal/auth/verify
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /judges
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /judges
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /judges/{judge_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /judges/{judge_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /judges/{judge_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /judges/{judge_id}/test
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /metric-configs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /metric-configs
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /metric-configs/{config_name}/{config_version}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /metric-configs/{config_name}/{config_version}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /metric-configs/{config_name}/{config_version}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /notifications/config
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /notifications/config
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /notifications/config/{notification_config_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /ops
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /ops
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /ops/registry
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /ops/registry/{name}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /ops/{name}/schema
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /projects
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /projects
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /projects/{project_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /projects/{project_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /projects/{project_id}/coverage
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects/{project_id}/move
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /projects/{project_id}/test-plan
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /projects/{project_id}/test-plan
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /projects/{project_id}/test-plan
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /projects/{project_id}/trend
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /report-configs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /report-configs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /report-configs/template
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /report-configs/{config_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /report-configs/{config_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /report-settings
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /report-settings
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /report-settings/prompts
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /report-settings/prompts/{section_key}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /report-settings/prompts/{section_key}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /report-settings/prompts/{section_key}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /reports/questions/{run_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /reports/{report_id}/content
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /reports/{report_id}/content
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{report_id}/content-url
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /reports/{report_id}/content/{key}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /reports/{report_id}/content/{section_key}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /reports/{report_id}/download
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /reports/{report_id}/export
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /reports/{report_id}/regenerate
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /reports/{run_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /reports/{run_id}/partitions
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /reports/{run_id}/partitions/metrics
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /runs
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/export
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/row
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/diff/row/image
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/queue
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /runs/{run_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /runs/{run_id}/analysis
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/cancel
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /runs/{run_id}/events
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /runs/{run_id}/parquet-url
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /runs/{run_id}/query
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/rerun
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/results
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /runs/{run_id}/results/query
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/sessions/{parent_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PUT /runs/{run_id}/upload
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /sdg/adapters
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /sdg/adapters
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /sdg/adapters/{adapter_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /sdg/adapters/{adapter_id}/runs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /sdk/versions
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /sdk/versions/{version}/download
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /suts
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /suts
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /suts/templates
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /suts/{sut_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /suts/{sut_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /suts/{sut_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /suts/{sut_id}/connections
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /suts/{sut_id}/connections
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /suts/{sut_id}/connections/{connection_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /suts/{sut_id}/connections/{connection_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /suts/{sut_id}/connections/{connection_id}/adapter
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/adapter/validate
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /suts/{sut_id}/connections/{connection_id}/test
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /suts/{sut_id}/runs
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /templates/{name}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /test-packages/recommendations
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /test-packages/recommendations
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /test-packages/recommendations/{recommendation_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /test-packages/recommendations/{recommendation_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /test-packages/recommendations/{recommendation_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /test-plans
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /test-plans
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /test-plans/{ref}/versions
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /test-plans/{ref}/versions
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}/versions/{version}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /traces/connections
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /traces/connections
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/connections/{connection_id}/land
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/conventions:detect
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/land:inline
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /traces/runs/{run_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /traces/runs/{run_id}/drops
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /traces/uploads
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/uploads/{upload_id}:detect
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /traces/versions/{version_id}/drops
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /traces/versions/{version_id}/ground-truth
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /traces/versions/{version_id}/ground-truth
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/versions/{version_id}:promote
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /users
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /users
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /users/{user_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /users/{user_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /users/{user_id}/deactivate
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /users/{user_id}/memberships
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /users/{user_id}/reactivate
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /users/{user_id}/reset-password
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /users/{user_id}/reset-token
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /workspaces
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /workspaces/{workspace_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /workspaces/{workspace_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/custom_ops
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/custom_ops
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
DELETE /workspaces/{workspace_id}/custom_ops/{name}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /workspaces/{workspace_id}/custom_ops/{name}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}/stop
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PUT /workspaces/{workspace_id}/embedding-config
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /workspaces/{workspace_id}/invitations
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/invitations
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/resend
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/invitations/{invitation_id}/revoke
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /workspaces/{workspace_id}/members
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/members
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/members/{user_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/members/{user_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metric-config-defaults/
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/metric-config-defaults/
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /workspaces/{workspace_id}/metric-config-defaults/{metric_name}/versions/
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /workspaces/{workspace_id}/metric-configs/resolved
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/metric-configs/{config_name}/versions
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/metrics
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/ops
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /workspaces/{workspace_id}/secrets
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/secrets
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
DELETE /workspaces/{workspace_id}/secrets/{secret_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
GET /workspaces/{workspace_id}/secrets/{secret_id}
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
PATCH /workspaces/{workspace_id}/secrets/{secret_id}
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/secrets/{secret_id}/reveal
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /workspaces/{workspace_id}/user-candidates
Validation Error
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
POST /workspaces/{workspace_id}/users
Unprocessable Entity
{
"application/json": {
"schema": {
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"type": "array"
},
"msg": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
424
POST /ops
Failed Dependency
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /projects/{project_id}/trend
Failed Dependency
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /runs/{run_id}/analysis
Failed Dependency
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/results/query
Failed Dependency
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/custom_ops
Failed Dependency
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /workspaces/{workspace_id}/custom_ops/{name}
Failed Dependency
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /workspaces/{workspace_id}/ops
Failed Dependency
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
500
POST /datasets/{dataset_id}/versions/{version_id}/quality-checks:run
Internal Server Error
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs
Internal Server Error
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/rerun
Internal Server Error
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /runs/{run_id}/results/query
Internal Server Error
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}
Internal Server Error
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /test-plans/{ref}/versions/{version}
Internal Server Error
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /traces/versions/{version_id}/ground-truth
Internal Server Error
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
503
POST /datasets/upload
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/query
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/commit
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/delete
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/rows/insert
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
PATCH /datasets/{dataset_id}/rows/update
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /datasets/{dataset_id}/schema
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
POST /datasets/{dataset_id}/versions/{version_id}/query
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /ready
One or more upstream dependencies are unavailable
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReadyResponse"
}
}
}
GET /sdk/versions
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}
GET /sdk/versions/{version}/download
Service Unavailable
{
"application/problem+json": {
"schema": {
"properties": {
"detail": {
"type": "string"
},
"error_code": {
"type": "string"
},
"status": {
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"title",
"status",
"detail",
"error_code"
],
"type": "object"
}
}
}