Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
133 changes: 131 additions & 2 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -1973,6 +1973,16 @@
"format": "uuid",
"description": "Identifies the user who created the dataset"
},
"tags": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
},
"description": "A list of tags for the dataset"
},
"metadata": {
"type": [
"object",
Expand Down Expand Up @@ -2213,6 +2223,51 @@
"root_span_id"
]
},
"DatasetSnapshot": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the dataset snapshot"
},
"dataset_id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the dataset that this snapshot belongs to"
},
"name": {
"type": "string",
"description": "Name of the dataset snapshot"
},
"description": {
"type": [
"string",
"null"
]
},
"xact_id": {
"type": "string",
"description": "Transaction id of the brainstore version at the time of the snapshot"
},
"created": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "Date of dataset snapshot creation"
}
},
"required": [
"id",
"dataset_id",
"name",
"description",
"xact_id",
"created"
]
},
"EnvVar": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -5173,7 +5228,7 @@
"description": "Textual description of the project automation"
},
"config": {
"anyOf": [
"oneOf": [
{
"type": "object",
"properties": {
Expand Down Expand Up @@ -7716,6 +7771,22 @@
],
"description": "Optional BTQL filter applied before topic automation."
},
"rerun_seconds": {
"type": [
"number",
"null"
],
"minimum": 600,
"description": "How often to recompute topic maps"
},
"relabel_overlap_seconds": {
"type": [
"number",
"null"
],
"minimum": 60,
"description": "How much recent history to relabel after a new topic map version becomes active"
},
"backfill_time_range": {
"anyOf": [
{
Expand All @@ -7740,7 +7811,7 @@
"type": "null"
}
],
"description": "Optional default time range for backfill operations."
"description": "Topic window used for classification coverage and initial backfill."
}
},
"required": [
Expand Down Expand Up @@ -7836,6 +7907,9 @@
},
"description": "Mapping from topic_id to topic name"
},
"generation_settings": {
"$ref": "#/components/schemas/TopicMapGenerationSettings"
},
"distance_threshold": {
"type": "number",
"description": "Maximum distance to nearest centroid. If exceeded, returns no_match."
Expand Down Expand Up @@ -7872,6 +7946,54 @@
"function"
]
},
"TopicMapGenerationSettings": {
"type": "object",
"properties": {
"algorithm": {
"type": "string",
"enum": [
"hdbscan",
"kmeans"
]
},
"dimension_reduction": {
"type": "string",
"enum": [
"umap",
"pca",
"none"
]
},
"sample_size": {
"type": "integer",
"exclusiveMinimum": 0
},
"n_clusters": {
"type": "integer",
"exclusiveMinimum": 0
},
"min_cluster_size": {
"type": "integer",
"exclusiveMinimum": 0
},
"min_samples": {
"type": "integer",
"exclusiveMinimum": 0
},
"hierarchy_threshold": {
"type": "integer",
"exclusiveMinimum": 0
},
"naming_model": {
"type": "string"
}
},
"required": [
"algorithm",
"dimension_reduction"
],
"description": "Clustering and naming settings used to generate this topic map"
},
"TraceScope": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -8030,6 +8152,13 @@
],
"format": "date-time",
"description": "Date of user creation"
},
"last_active_at": {
"type": [
"number",
"null"
],
"description": "Unix timestamp in milliseconds of the user's last activity, when available"
}
},
"required": [
Expand Down
Loading
Loading