feat: added keyword codec (partially works)

This commit is contained in:
2025-08-19 19:06:08 +02:00
parent 210b31aef8
commit 69c2550f44
24 changed files with 964 additions and 80 deletions

View File

@@ -0,0 +1,26 @@
{
"@context": "https://schema.org",
"@type": "Book",
"name": "The Great Book",
"author": {
"@type": "Person",
"name": "Jane Doe",
"email": "jane.doe@example.com"
},
"tags": [
"fiction",
"adventure"
],
"chapters": [
{
"name": "Chapter 1",
"pages": 20
},
{
"name": "Chapter 2",
"pages": 30
}
],
"headline": "The Great Book",
"articleBody": "This is the content of the great book."
}