Skip to content

Commit 1de8f9d

Browse files
committed
Update TechnicalArticleSchema.dateModified
1 parent e3c1dd9 commit 1de8f9d

14 files changed

+18
-13
lines changed

AGENTS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
- Keep changes in sync so the docs and examples reference the correct release(s).
4343
- If the search reveals new version locations, update this list in `AGENTS.md` so future bumps include them.
4444

45+
## SEO Schema Maintenance
46+
- MDX files in `docs/` include a `<TechnicalArticleSchema>` component for SEO structured data.
47+
- When making meaningful content changes to an MDX file, update the `dateModified` attribute to the current date (format: `YYYY-MM-DD`).
48+
- Keep `datePublished` unchanged (it reflects the original publication date).
49+
4550
## Notes for Contributors
4651
- Main content lives in `docs/`; keep navigation in sync via `sidebars.ts`.
4752
- When adding new pages, ensure links are valid; `onBrokenLinks` is set to `throw`.

docs/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="This is the ObjectBox documentation for our C and C++ APIs. Persist your objects and structs in a fast, embedded database."
2525
url="https://cpp.objectbox.io/README"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2026-01-20"
2828
/>
2929

3030
# ObjectBox C / C++ Database

docs/dev-tools-and-debugging.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="ObjectBox has tools that help during development. Learn more about looking at data inside the database and how to enable debug logs for additional information."
2525
url="https://cpp.objectbox.io/dev-tools-and-debugging"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2025-07-22"
2828
/>
2929

3030
# Dev Tools and Debugging

docs/entity-annotations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="ObjectBox database persistence for C and C++ is based on objects. Learn how to persist entities with entity annotations in this tutorial section."
2525
url="https://cpp.objectbox.io/entity-annotations"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2025-07-22"
2828
/>
2929

3030
# Entity Annotations

docs/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { FAQSchema, TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="Frequently asked questions about ObjectBox C and C++."
2525
url="https://cpp.objectbox.io/faq"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2025-07-22"
2828
/>
2929

3030
# FAQ

docs/generator.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="This is the reference guide on the ObjectBox Generator, a build-time tool for ObjectBox."
2525
url="https://cpp.objectbox.io/generator"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2025-11-27"
2828
/>
2929

3030
# Generator

docs/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="ObjectBox Generator produces binding code for ObjectBox C & C++ APIs. This greatly simplifies the model declaration and FlatBuffers serialization, allowing y..."
2525
url="https://cpp.objectbox.io/getting-started"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2025-11-27"
2828
/>
2929

3030
# How to get started

docs/installation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="The ObjectBox C / C ++ database is setup within minutes. Get the library and the generator and start developing high performance data applications."
2525
url="https://cpp.objectbox.io/installation"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2026-01-20"
2828
/>
2929

3030
# Installation

docs/queries.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="You can query the ObjectBox C / C++ database for objects by specifying criteria with the Query builder. It is easy, learn how to do it here."
2525
url="https://cpp.objectbox.io/queries"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2025-07-22"
2828
/>
2929

3030
# Queries

docs/relations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { TechnicalArticleSchema } from '@site/src/components/Schema';
2424
description="Learn how to create and update to-one and to-many relations between entities in ObjectBox C / C++ database."
2525
url="https://cpp.objectbox.io/relations"
2626
datePublished="2025-07-21"
27-
dateModified="2025-07-21"
27+
dateModified="2025-07-22"
2828
/>
2929

3030
# Relations

0 commit comments

Comments
 (0)