-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathbsdo-translation-examples.txt
More file actions
101 lines (90 loc) · 4.72 KB
/
bsdo-translation-examples.txt
File metadata and controls
101 lines (90 loc) · 4.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
TYPES: #eg-0220 CreativeWork, Book, translator, translationOfWork, workTranslation
PRE-MARKUP:
A CreativeWork and its translation.
<div>
<div>
<h1>Rouge et le noir</h1>
<div>Author: Stendhal</div>
<div>Language: French</div>
<div>Has Translation: Red and Black : A New Translation, Backgrounds and Sources, Criticism</div>
</div>
<div>
<h1>Red and Black : A New Translation, Backgrounds and Sources, Criticism</h1>
<div>Author: Stendhal</div>
<div>Language: English</div>
<div>Subject: Psychological fiction, French</div>
<div>Translation of: Rouge et le noir</div>
<div>Translator: Robert Martin Adams</div>
</div>
</div>
MICRODATA:
<div>
<div itemscope itemtype="https://schema.org/Book" itemid="http://worldcat.org/entity/work/id/2292573321">
<h1><span itemprop="name">Rouge et le noir</span></h1>
<div>Author: <span itemprop="author" itemscope itemtype="https://schema.org/Person" itemid="http://viaf.org/viaf/17823">Stendhal</span></div>
<div>Language: <meta itemprop="inLanguage" content="fr" />French</div>
<div>Has Translation: <span itemprop="workTranslation" itemscope itemtype="https://schema.org/CreativeWork" itemid="http://worldcat.org/entity/work/id/460647">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></div>
</div>
<div itemscope itemtype="https://schema.org/Book" itemid="http://worldcat.org/entity/work/id/460647">
<h1><span itemprop="name">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></h1>
<div>Author: <span itemprop="author" itemscope itemtype="https://schema.org/Person" itemid="http://viaf.org/viaf/17823">Stendhal</span></div>
<div>Language: <meta itemprop="inLanguage" content="en" />English</div>
<div>Subject: <span itemprop="about">Psychological fiction, French</span></div>
<div>Translation of: <span itemprop="translationOfWork" itemscope itemtype="https://schema.org/CreativeWork" itemid="http://worldcat.org/entity/work/id/2292573321">Rouge et le noir</span></div>
<div>Translator: <span itemprop="translator" itemscope itemtype="https://schema.org/Person" itemid="http://viaf.org/viaf/8453420">Robert Martin Adams</span></div>
</div>
</div>
RDFA:
<div vocab="https://schema.org/">
<div typeof="Book" resource="http://worldcat.org/entity/work/id/2292573321">
<h1><span property="name">Rouge et le noir</span></h1>
<div>Author: <span property="author" typeof="Person" resource="http://viaf.org/viaf/17823">Stendhal</span></div>
<div>Language: <span property="inLanguage" content="fr">French</span></div>
<div>Has Translation: <span property="workTranslation" typeof="CreativeWork" resource="http://worldcat.org/entity/work/id/460647">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></div>
</div>
<div typeof="Book" resource="http://worldcat.org/entity/work/id/460647">
<h1><span property="name">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></h1>
<div>Author: <span property="author" typeof="Person" resource="http://viaf.org/viaf/17823">Stendhal</span></div>
<div>Language: <span property="inLanguage" content="en">English</span></div>
<div>Subject: <span property="about">Psychological fiction, French</span></div>
<div>Translation of: <span property="translationOfWork" typeof="CreativeWork" resource="http://worldcat.org/entity/work/id/2292573321">Rouge et le noir</span></div>
<div>Translator: <span property="translator" typeof="Person" resource="http://viaf.org/viaf/8453420">Robert Martin Adams</span></div>
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@graph": [
{
"@id": "http://worldcat.org/entity/work/id/2292573321",
"@type": "Book",
"author": {
"@id": "http://viaf.org/viaf/17823"
},
"inLanguage": "fr",
"name": "Rouge et le noir",
"workTranslation": {
"@type": "Book",
"@id": "http://worldcat.org/entity/work/id/460647"
}
},
{
"@id": "http://worldcat.org/entity/work/id/460647",
"@type": "Book",
"about": "Psychological fiction, French",
"author": {
"@id": "http://viaf.org/viaf/17823"
},
"inLanguage": "en",
"name": "Red and Black : A New Translation, Backgrounds and Sources, Criticism",
"translationOfWork": {
"@id": "http://worldcat.org/entity/work/id/2292573321"
},
"translator": {
"@id": "http://viaf.org/viaf/8453420"
}
}
]
}
</script>