1{
2  "@context": {
3     "schema": "http://schema.org/",
4     "name": "schema:name",
5     "body": "schema:articleBody",
6     "words": "schema:wordCount",
7     "post": {
8       "@id": "schema:blogPost",
9       "@container": "@index"
10     }
11  },
12  "@id": "http://example.com/",
13  "@type": "schema:Blog",
14  "name": "World Financial News",
15  "post": {
16     "en": {
17       "@id": "http://example.com/posts/1/en",
18       "body": "World commodities were up today with heavy trading of crude oil...",
19       "words": 1539
20     },
21     "de": {
22       "@id": "http://example.com/posts/1/de",
23       "body": "Die Werte an Warenbörsen stiegen im Sog eines starken Handels von Rohöl...",
24       "words": 1204
25     }
26  }
27}
28