Seamlessly export your BigQuery schemas in formats optimized for Large Language Models.
Everything you need to make your BigQuery data accessible to AI models
Export schemas in formats specifically designed for easy consumption by LLMs.
Choose from JSON, YAML, or Markdown formats to best suit your AI workflow.
Select specific datasets, tables, and columns to include in your exports.
Optimize your prompts with built-in token counting for efficient AI interactions.
All processing happens in your browser. No data is stored on our servers except login credentials. OAuth authentication ensures you can only export data you have authorized access to through your Google permissions.
BQBundle makes it simple to browse your BigQuery datasets, select tables, and export schemas in just a few clicks.
[ { "table": "users", "columns": [ { "name": "user_id", "type": "INTEGER", "mode": "REQUIRED", "description": "Unique identifier for the user" }, { "name": "name", "type": "STRING", "mode": "REQUIRED", "description": "User's full name" }, { "name": "email", "type": "STRING", "mode": "REQUIRED", "description": "User's email address" }, { "name": "created_at", "type": "TIMESTAMP", "mode": "REQUIRED", "description": "When the user was created" } ], "sample": [ { "user_id": 1, "name": "John Doe", "email": "[email protected]", "created_at": "2023-01-15T08:30:00Z" }, { "user_id": 2, "name": "Jane Smith", "email": "[email protected]", "created_at": "2023-02-20T14:15:00Z" } ] } ]
Export your BigQuery schemas in a format that helps AI models understand your data structure and relationships.
Use your exported schemas with your favorite AI tools to get better insights
Get AI explanations of your data structure
Create comprehensive data models with AI assistance
Identify potential schema problems with AI help
Hey Gemini, can you take a look at this schema and define the most important tables and their relationships?
Okay, I've reviewed the schema. Here are the most important tables and their relationships:
The data schema describes a school information system, with students and courses as central entities. Attendance is then tracked against these, both at a lesson level and for general roll calls.
students Table 🧑🎓
courses Table 📚
lessons Table 🕒
lesson_attendance Table ✅
roll_call_attendance Table 📋
Students to Attendance:
Courses and Lessons:
Lessons to Attendance:
Essentially, the students table holds who the students are, the courses table describes the subjects they take, the lessons table breaks down those courses into specific timed events, and the two attendance tables (lesson_attendance and roll_call_attendance) track student presence at these events and general school sessions.
Sign in with your Google account to start exploring and exporting your BigQuery schemas.