summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.jsonld
diff options
context:
space:
mode:
authorBruno Deferrari <utizoc@gmail.com>2014-10-16 17:12:30 -0200
committerBruno Deferrari <utizoc@gmail.com>2014-10-16 17:12:30 -0200
commiteb8d37046ac16b1f4d6c29b36c005d77d2e19a95 (patch)
tree135dd40b1e56070deca70458bf855e44210dd4e4 /tests/examplefiles/example.jsonld
parentae99918058d955d2155bf861fee6a128494d7d83 (diff)
parent33cc6d165e96ceb19cda82925eeb71a1cfb15c14 (diff)
downloadpygments-eb8d37046ac16b1f4d6c29b36c005d77d2e19a95.tar.gz
Merge heads (main and ShenLexer)
Diffstat (limited to 'tests/examplefiles/example.jsonld')
-rw-r--r--tests/examplefiles/example.jsonld27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/examplefiles/example.jsonld b/tests/examplefiles/example.jsonld
new file mode 100644
index 00000000..48787d75
--- /dev/null
+++ b/tests/examplefiles/example.jsonld
@@ -0,0 +1,27 @@
+{
+ "@context": {
+ "schema": "http://schema.org/",
+ "name": "schema:name",
+ "body": "schema:articleBody",
+ "words": "schema:wordCount",
+ "post": {
+ "@id": "schema:blogPost",
+ "@container": "@index"
+ }
+ },
+ "@id": "http://example.com/",
+ "@type": "schema:Blog",
+ "name": "World Financial News",
+ "post": {
+ "en": {
+ "@id": "http://example.com/posts/1/en",
+ "body": "World commodities were up today with heavy trading of crude oil...",
+ "words": 1539
+ },
+ "de": {
+ "@id": "http://example.com/posts/1/de",
+ "body": "Die Werte an Warenbörsen stiegen im Sog eines starken Handels von Rohöl...",
+ "words": 1204
+ }
+ }
+}