From 95ddbfa85b47ae5d74a70e86a95f760a8ede3e96 Mon Sep 17 00:00:00 2001 From: Vipin Kumar <68920272+venomkage@users.noreply.github.com> Date: Tue, 1 Sep 2026 15:48:43 +0200 Subject: [PATCH] Update collection schema name from 'companies' to 'books' --- docs-site/content/guide/building-a-search-application.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-site/content/guide/building-a-search-application.md b/docs-site/content/guide/building-a-search-application.md index b2aa3bd3..018e69ce 100644 --- a/docs-site/content/guide/building-a-search-application.md +++ b/docs-site/content/guide/building-a-search-application.md @@ -273,7 +273,7 @@ CollectionResponse collectionResponse = client.collections().create(collectionSc ```go booksSchema := &api.CollectionSchema{ - Name: "companies", + Name: "books", Fields: []api.Field{ {Name: "title", Type: "string"}, {Name: "authors", Type: "string[]", Facet: pointer.True()},