
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeYou can absolutely use one Sanity Studio with specific documents for your primary domain and different documents for a subdomain without needing an enterprise plan. You have a couple of approaches:
Keep all your content in one dataset and filter documents based on which site they belong to. Add a field to your documents (like site: 'main' | 'subdomain') and then:
This works on any Sanity plan and is the most straightforward approach for most use cases.
You can create multiple datasets within the same project and use workspaces to manage them in one Studio. Each workspace connects to a different dataset:
// sanity.config.ts
export default defineConfig([
{
name: 'main-site',
title: 'Main Site',
projectId: 'your-project',
dataset: 'production',
// ... schema and plugins
},
{
name: 'subdomain',
title: 'Subdomain',
projectId: 'your-project',
dataset: 'subdomain',
// ... different schema if needed
}
])This gives you a workspace switcher in your Studio to toggle between datasets. This feature is available on all plans, including the free tier - you're not limited in the number of datasets per project.
Your primary domain would query from the production dataset, while your subdomain queries from the subdomain dataset. Each dataset can have its own schema, though you define all schemas in your Studio config.
The enterprise-only feature is cross-dataset references - if documents in one dataset need to directly reference documents in another dataset. For most multi-site setups where content is independent between domains, you won't need this.
The workspaces approach is particularly powerful for multi-site scenarios and is commonly used for exactly your use case - managing multiple domains or brands from a single Studio while keeping content separated.
Sanity is the developer-first content operating system that gives you complete control. Schema-as-code, GROQ queries, and real-time APIs mean no more workarounds or waiting for deployments. Free to start, scale as you grow.
Content operations
Content backend


The only platform powering content operations
By Industry


Tecovas strengthens their customer connections
Build and Share

Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag store