Skip to content

Commit d942b32

Browse files
pchampingkellogg
authored andcommitted
used a different prefix for DC elements
The prefix dc is used everywhere else for DC terms
1 parent 34fbd80 commit d942b32

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6594,22 +6594,22 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
65946594
"@context": {
65956595
"@version": 1.1,
65966596
"schema": "http://schema.org/",
6597-
"dc": "http://purl.org/dc/elements/1.1/",
6597+
"dc11": "http://purl.org/dc/elements/1.1/",
65986598
"name": "schema:name",
65996599
"body": "schema:articleBody",
66006600
"words": "schema:wordCount",
66016601
"post": {
66026602
"@id": "schema:blogPost",
66036603
****"@container": "@index",
6604-
"@index": "dc:language"****
6604+
"@index": "dc11:language"****
66056605
}
66066606
},
66076607
"@id": "http://example.com/",
66086608
"@type": "schema:Blog",
66096609
"name": "World Financial News",
66106610
"post": {
66116611
"en": {
6612-
####↑ "en" will add `"dc:language": "en"` when expanded####
6612+
####↑ "en" will add `"dc11:language": "en"` when expanded####
66136613
"@id": "http://example.com/posts/1/en",
66146614
"body": "World commodities were up today with heavy trading of crude oil...",
66156615
"words": 1539
@@ -6701,7 +6701,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
67016701
</tr>
67026702
<tr>
67036703
<td>http://example.com/posts/1/de</td>
6704-
<td>dc:language</td>
6704+
<td>dc11:language</td>
67056705
<td>de</td>
67066706
<td></td>
67076707
</tr>
@@ -6719,7 +6719,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
67196719
</tr>
67206720
<tr>
67216721
<td>http://example.com/posts/1/en</td>
6722-
<td>dc:language</td>
6722+
<td>dc11:language</td>
67236723
<td>en</td>
67246724
<td></td>
67256725
</tr>
@@ -6733,7 +6733,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
67336733
data-to-rdf>
67346734
<!--
67356735
@prefix schema: <http://schema.org/> .
6736-
@prefix dc: <http://purl.org/dc/elements/1.1/language> .
6736+
@prefix dc11: <http://purl.org/dc/elements/1.1/language> .
67376737
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
67386738
67396739
<http://example.com/> a schema:Blog;
@@ -6745,13 +6745,13 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
67456745
schema:articleBody
67466746
"Die Werte an Warenbörsen stiegen im Sog eines starken Handels von Rohöl...";
67476747
schema:wordCount 1204;
6748-
****dc:language "de"****.
6748+
****dc11:language "de"****.
67496749
67506750
<http://example.com/posts/1/en>
67516751
schema:articleBody
67526752
"World commodities were up today with heavy trading of crude oil...";
67536753
schema:wordCount 1539;
6754-
****dc:language "en"****.
6754+
****dc11:language "en"****.
67556755
-->
67566756
</pre>
67576757
</aside>

0 commit comments

Comments
 (0)