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
28 changes: 28 additions & 0 deletions openapi/spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6788,6 +6788,26 @@
"type": "string",
"nullable": true
},
"visibility": {
"type": "object",
"nullable": true,
"properties": {
"users": {
"type": "array",
"nullable": true,
"items": {
"type": "string"
}
},
"groups": {
"type": "array",
"nullable": true,
"items": {
"type": "string"
}
}
}
},
"online": {
"$ref": "#/components/schemas/OnlineScoreConfig"
}
Expand Down Expand Up @@ -7946,6 +7966,14 @@
"distance_threshold": {
"type": "number",
"description": "Maximum distance to nearest centroid. If exceeded, returns no_match."
},
"btql_filter": {
"type": "string",
"description": "Per-topic-map BTQL filter that was applied when this version was generated. Absent on versions generated before this was recorded."
},
"automation_btql_filter": {
"type": "string",
"description": "Automation-level BTQL filter that was applied when this version was generated. Absent on versions generated before this was recorded."
}
},
"required": [
Expand Down
22 changes: 22 additions & 0 deletions openapi/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5724,6 +5724,20 @@ components:
destination:
type: string
nullable: true
visibility:
type: object
nullable: true
properties:
users:
type: array
nullable: true
items:
type: string
groups:
type: array
nullable: true
items:
type: string
online:
$ref: "#/components/schemas/OnlineScoreConfig"
ProjectScore:
Expand Down Expand Up @@ -6560,6 +6574,14 @@ components:
distance_threshold:
type: number
description: Maximum distance to nearest centroid. If exceeded, returns no_match.
btql_filter:
type: string
description: Per-topic-map BTQL filter that was applied when this version was
generated. Absent on versions generated before this was recorded.
automation_btql_filter:
type: string
description: Automation-level BTQL filter that was applied when this version was
generated. Absent on versions generated before this was recorded.
required:
- type
- source_facet
Expand Down