Open AI Assistants and Vector stores, How can I search and retrieve by ID?

Hey everyone,
I’m using OpenAI Assistants to build a chatbot, and I’m storing my files in a vector store. The part I need help with involves the JSON files.

I have some data ingested into JSON files, and a rough example of the structure looks like this:
{ ID: <>, attribute1: <>, attribute2: <> }

Is there a way to retrieve only specific chunks based on the ID? For example, if a user asks a question about ID 2234, I want my bot to look only at that specific JSON object and ignore everything else.

Right now, all user questions are being processed through semantic search, and the accuracy is very poor as a result.