Vectorizing and Indexing on flattened Arrays in JSON

Description

If I had a collection schema like this:
{
“task_descriptions”: [
“Task 1: Construction Design Engineering”,
“Task 2: Implement blueprint”,
“Task 3: Hire Contractor”
],
“task_vectors”: [
[
325,
623,
32
],
[
7327,
62,
72346
]
,
[
358,
8498,
26
]
],
“sections”: [
{
“statement of work”: “Build a house from scratch”,
“category”: “Real Estate”,
“tasks”: [
{
“task_id”: “Task 1”,
“task_description”: “Construction Design Engineering”,
“task_hours”: 36986,
“task_vector”: [
325,
623,
32
]
}
]
}
]
}
Will I be able to vectorize and index each task in the flattened array in task_descriptions? Will hybrid search work on the array?

Server Setup Information

  • Weaviate Server Version:
  • Deployment Method:
  • Multi Node? Number of Running Nodes:
  • Client Language and Version:
  • Multitenancy?:

Any additional Information

1 Like