diff --git a/openapi/spec.json b/openapi/spec.json index 750f8bc..e40da57 100644 --- a/openapi/spec.json +++ b/openapi/spec.json @@ -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" } @@ -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": [ diff --git a/openapi/spec.yaml b/openapi/spec.yaml index 6be9bdd..16ea599 100644 --- a/openapi/spec.yaml +++ b/openapi/spec.yaml @@ -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: @@ -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