diff --git a/docs/content/docs/2.usage/1.collections.md b/docs/content/docs/2.usage/1.collections.md
index 3d95a8bf5..a934173c4 100644
--- a/docs/content/docs/2.usage/1.collections.md
+++ b/docs/content/docs/2.usage/1.collections.md
@@ -92,7 +92,7 @@ const { data: posts } = await useAsyncData('blog', () => queryCollection('blog')
Blog
@@ -138,7 +138,7 @@ type CollectionSource = {
Every collection includes these default fields:
-- `_id`: Unique content identifier
+- `id`: Unique content identifier
- `stem`: File path without extension (used for sorting and location)
- `extension`: File extension
- `meta`: Custom fields not defined in the collection schema
diff --git a/examples/blog/app/pages/index.vue b/examples/blog/app/pages/index.vue
index 891c8a08d..d0f572bc5 100644
--- a/examples/blog/app/pages/index.vue
+++ b/examples/blog/app/pages/index.vue
@@ -1,7 +1,7 @@