-
Notifications
You must be signed in to change notification settings - Fork 918
Expand file tree
/
Copy pathissue-894-examples.txt
More file actions
executable file
·307 lines (262 loc) · 10.5 KB
/
issue-894-examples.txt
File metadata and controls
executable file
·307 lines (262 loc) · 10.5 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
TYPES: #eg-0314 DefinedTerm, termCode
PRE-MARKUP:
<div>
<h1>Library of Congress Resource Type: <b>Manuscript</b></h1>
Code: <b>Man</b>
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/DefinedTerm">
<h1>Library of Congress Resource Type: <b><span itemprop="name">Manuscript</span></b></h1>
Code: <b><span itemprop="termCode">Man</span></b>
<link itemprop="inDefinedTermSet" href="http://id.loc.gov/vocabulary/resourceTypes"/>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="DefinedTerm">
<h1>Library of Congress Resource Type: <b><span property="name">Manuscript</span></b></h1>
Code: <b><span property="termCode">Man</span></b>
<link property="inDefinedTermSet" href="http://id.loc.gov/vocabulary/resourceTypes"/>
</div>
JSON:
{
"@context": "https://schema.org/",
"@type": "DefinedTerm",
"termCode": "Man",
"inDefinedTermSet": "http://id.loc.gov/vocabulary/resourceTypes"
}
TYPES: #eg-0315 DefinedTerm, DefinedTermSet, inDefinedTermSet
PRE-MARKUP:
<div>
<div>
<h1><a href="http://openjurist.org/dictionary/Ballentine">Ballentine's Law Dictionary</a></h1>
</div>
<div>
<h2>Dictionary term</h2>
Name: calendar year<br/>
Description: The period from January 1st to December 31st, inclusive, of any year.<br/>
In Dictionary: Ballentine's Law Dictionary
</div>
<div>
<h2>Dictionary term</h2>
Name: schema<br/>
Description: A representation of a plan or theory in the form of an outline or model.<br/>
In Dictionary: Ballentine's Law Dictionary
</div>
</div>
MICRODATA:
<div>
<div itemscope itemtype="https://schema.org/DefinedTermSet">
<link itemprop="additionalType" href="https://schema.org/Book">
<h1><a itemprop="url" href="http://openjurist.org/dictionary/Ballentine"><span itemprop="name">Ballentine's Law Dictionary</span></a></h1>
</div>
<div itemscope itemtype="https://schema.org/DefinedTerm">
<h2>Dictionary term</h2>
<link itemprop="url" href="http://openjurist.org/dictionary/Ballentine/term/calendar-year"/>
Name: <span itemprop="name">calendar year</span><br/>
Description: <span itemprop="description">The period from January 1st to December 31st, inclusive, of any year.</span><br/>
In Dictionary: Ballentine's Law Dictionary
<link itemprop="inDefinedTermSet" href="http://openjurist.org/dictionary/Ballentine">
</div>
<div itemscope itemtype="https://schema.org/DefinedTerm">
<h2>Dictionary term</h2>
<link itemprop="url" href="http://openjurist.org/dictionary/Ballentine/term/schema"/>
Name: <span itemprop="name">schema</span><br/>
Description: <span itemprop="description">A representation of a plan or theory in the form of an outline or model.</span><br/>
In Dictionary: Ballentine's Law Dictionary
<link itemprop="inDefinedTermSet" href="http://openjurist.org/dictionary/Ballentine">
</div>
</div>
RDFA:
<div vocab="https://schema.org/">
<div typeof="DefinedTermSet Book">
<h1><a property="url" href="http://openjurist.org/dictionary/Ballentine"><span property="name">Ballentine's Law Dictionary</span></a></h1>
</div>
<div typeof="DefinedTerm">
<h2>Dictionary term</h2>
<link property="url" href="http://openjurist.org/dictionary/Ballentine/term/calendar-year"/>
Name: <span property="name">calendar year</span><br/>
Description: <span property="description">The period from January 1st to December 31st, inclusive, of any year.</span><br/>
In Dictionary: Ballentine's Law Dictionary
<link property="inDefinedTermSet" href="http://openjurist.org/dictionary/Ballentine">
</div>
<div typeof="DefinedTerm">
<h2>Dictionary term</h2>
<link propery="url" href="http://openjurist.org/dictionary/Ballentine/term/schema"/>
Name: <span property="name">schema</span><br/>
Description: <span property="description">A representation of a plan or theory in the form of an outline or model.</span><br/>
In Dictionary: Ballentine's Law Dictionary
<link property="inDefinedTermSet" href="http://openjurist.org/dictionary/Ballentine">
</div>
</div>
JSON:
[
{
"@context": "https://schema.org/"
},
{
"@type": ["DefinedTermSet","Book"],
"@id": "http://openjurist.org/dictionary/Ballentine",
"name": "Ballentine's Law Dictionary"
},
{
"@type": "DefinedTerm",
"@id": "http://openjurist.org/dictionary/Ballentine/term/calendar-year",
"name": "calendar year",
"description": "The period from January 1st to December 31st, inclusive, of any year.",
"inDefinedTermSet": "http://openjurist.org/dictionary/Ballentine"
},
{
"@type": "DefinedTerm",
"@id": "http://openjurist.org/dictionary/Ballentine/term/schema",
"name": "schema",
"description": "A representation of a plan or theory in the form of an outline or model.",
"inDefinedTermSet": "http://openjurist.org/dictionary/Ballentine"
}
]
TYPES: #eg-0316 DefinedTerm, inDefinedTermSet, termCode
PRE-MARKUP:
<div>
<h1>Occupation Term defined by <a href="http://onetonline.org">O*Net Online</a></h1>
<h2>51-6042.00 - Shoe Machine Operators and Tenders</h2>
Operate or tend a variety of machines to join, decorate, reinforce, or finish shoes and shoe parts.
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/DefinedTerm">
<h1>Occupation Term defined by <a itemprop="inDefinedTermSet" href="http://onetonline.org">O*Net Online</a></h1>
<h2><span itemprop="termCode">51-6042.00</span> - <span itemprop="name">Shoe Machine Operators and Tenders</span></h2>
<span itemprop="description">Operate or tend a variety of machines to join, decorate, reinforce, or finish shoes and shoe parts.</span>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="DefinedTerm">
<h1>Occupation Term defined by <a property="inDefinedTermSet" href="http://onetonline.org">O*Net Online</a></h1>
<h2><span property="termCode">51-6042.00</span> - <span property="name">Shoe Machine Operators and Tenders</span></h2>
<span property="description">Operate or tend a variety of machines to join, decorate, reinforce, or finish shoes and shoe parts.</span>
</div>
JSON:
{
"@context": "https://schema.org/",
"@type": "DefinedTerm",
"name": "Shoe Machine Operators and Tenders",
"termCode": "51-6042.00",
"description": "Operate or tend a variety of machines to join, decorate, reinforce, or finish shoes and shoe parts.",
"inDefinedTermSet": "http://onetonline.org"
}
TYPES: #eg-0317 CategoryCode, CategoryCodeSet, hasCategoryCode, inCodeSet
PRE-MARKUP:
<div>
<h1 >Defined Values in The Mammal Classification List</h1>
<ul>
<li>Carnivore - A mammal that feeds on other animals</li>
</ul>
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/CategoryCodeSet" id="C1">
<h1>Defined Values in <span itemprop="name">The Mammal Classification List</span></h1>
<ul>
<li itemprop="hasCategoryCode" itemscope itemtype="https://schema.org/CategoryCode">
<span itemprop="name">Carnivore</span> - <span itemprop="description">A mammal that feeds on other animals</span>
<link itemprop="inCodeSet" href="#C1"/>
</li>
</ul>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="CategoryCodeSet" id="C1">
<h1>Defined Values in <span property="name">The Mammal Classification List</span></h1>
<ul>
<li property="hasCategoryCode" typeof="CategoryCode">
<span property="name">Carnivore</span> - <span property="description">A mammal that feeds on other animals</span>
<link property="inCodeSet" href="#C1"/>
</li>
</ul>
</div>
JSON:
{
"@context": "https://schema.org/",
"@type": "CategoryCodeSet",
"@id": "_C1",
"name": "The Mammal Classification List",
"hasCategoryCode": {
"@type": "CategoryCode",
"name": "Carnivore",
"description": "A mammal that feeds on other animals",
"inCodeSet": "_C1"
}
}
TYPES: #eg-0318 CategoryCode, CategoryCodeSet, inCodeSet, codeValue, hasCategoryCode
PRE-MARKUP:
<div>
<h1>ISO 639-2: Codes for the Representation of Names of Languages<h1>
<h2>Listing of codes:</h2>
<ul>
<li>...</li>
<li>cze</li>
<li>...</li>
</ul>
</div>
<div>
<h2>Czech; tchèque; Tschechisch</h2>
<h3>From: ISO 639-2: Codes for the Representation of Names of Languages</h3>
English: Czech<br/>
French: tchèque<br/>
German: Tschechisch<br/>
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/CategoryCodeSet" itemid="http://id.loc.gov/vocabulary/iso639-2">
<h1 itemprop="name">ISO 639-2: Codes for the Representation of Names of Languages</h1>
<h2>Listing of codes:</h2>
<ul>
<li>...</li>
<li><span itemprop="hasCategoryCode" itemid="http://id.loc.gov/vocabulary/iso639-2/cze">cze</span></li>
<li>...</li>
</ul>
</div>
<div itemscope itemtype="https://schema.org/CategoryCode" itemid="http://id.loc.gov/vocabulary/iso639-2/cze">
<meta itemprop="codeValue" content="cze">
<h2>Czech; tchèque; Tschechisch</h2>
<link itemprop="inCodeSet" href="http://id.loc.gov/vocabulary/iso639-2">
<h3>From: ISO 639-2: Codes for the Representation of Names of Languages</h3>
<span itemprop="name" xml:lang="en" content="Czech">English: Czech</span><br/>
<span itemprop="name" xml:lang="fr" content="tchèque">French: tchèque</span><br/>
<span itemprop="name" xml:lang="de" content="Tschechisch">German: Tschechisch</span><br/>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="CategoryCodeSet" resource="http://id.loc.gov/vocabulary/iso639-2">
<h1 property="name">ISO 639-2: Codes for the Representation of Names of Languages</h1>
<h2>Listing of codes:</h2>
<ul>
<li>...</li>
<li><span property="hasCategoryCode" resource="http://id.loc.gov/vocabulary/iso639-2/cze">cze</span></li>
<li>...</li>
</ul>
</div>
<div vocab="https://schema.org/" typeof="CategoryCode" resource="http://id.loc.gov/vocabulary/iso639-2/cze">
<meta property="codeValue" content="cze">
<h2>Czech; tchèque; Tschechisch</h2>
<link property="inCodeSet" href="http://id.loc.gov/vocabulary/iso639-2">
<h3>From: ISO 639-2: Codes for the Representation of Names of Languages</h3>
<span property="name" xml:lang="en" content="Czech">English: Czech</span><br/>
<span property="name" xml:lang="fr" content="tchèque">French: tchèque</span><br/>
<span property="name" xml:lang="de" content="Tschechisch">German: Tschechisch</span><br/>
</div>
JSON:
[
{
"@context": "https://schema.org/"
},
{
"@type": "CategoryCodeSet",
"@id": "http://id.loc.gov/vocabulary/iso639-2",
"name": "ISO 639-2: Codes for the Representation of Names of Languages",
"hasCategoryCode": "http://id.loc.gov/vocabulary/iso639-2/cze"
},
{
"@type": "CategoryCode",
"@id": "http://id.loc.gov/vocabulary/iso639-2/cze",
"codeValue": "cze",
"name": {
"en": "Czech",
"fr": "tchèque",
"de": "Tschechisch"
},
"inCodeSet": "http://id.loc.gov/vocabulary/iso639-2"
}
]