Add JSON-LD semantic data tagging support
R
Radek A.
Add native support for JSON-LD (JavaScript Object Notation for Linked Data) in Strapi content types and APIs. JSON-LD is a widely adopted format for structuring linked data and improving content discoverability across web platforms. Official support would enable developers and content teams to easily expose semantic relationships and metadata from Strapi-based sites.
Example Use Case
A “Blog Post” content type could automatically output structured data such as:
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "Understanding Headless CMS",
"author": {
"@type": "Person",
"name": "Jane Doe"
},
"datePublished": "2025-12-18"
}
This would improve search visibility and simplify content syndication.