forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdo-visualartwork-examples.txt
483 lines (452 loc) · 20 KB
/
sdo-visualartwork-examples.txt
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
TYPES: VisualArtwork, Person
PRE-MARKUP:
Fairly straightforward painting markup.
<div>
<h1 lang="fr">La trahison des images </h1>
<p>
A painting also known as The Treason of Images or
The Treachery of Images.
</p>
<img src="http://http://upload.wikimedia.org/wikipedia/en/b/b9/MagrittePipe.jpg" />
<div>
<p>
The painting shows a pipe. Below it, Magritte painted,
<q lang="fr">Ceci n'est pas une pipe.</q>, French for
"This is not a pipe."
</p>
<p>
His statement is taken to mean that the painting itself is not a pipe.
The painting is merely an image of a pipe. Hence, the description,
"this is not a pipe."
</p>
<p>
Similarly, the image shown above is neither a pipe nor even a painting,
but rather a digital photograph.
</p>
<p>
The painting is sometimes given as an example of meta message conveyed
by paralanguage. Compare with Korzybski's <q>The word is not the thing</q>
and <q>The map is not the territory</q>.
</div>
<ul>
<li>Artist: <a href="https://www.freebase.com/m/06h88">René Magritte</a></li>
<li>Dimensions: 940 mm × 635 mm</li>
<li>Materials: oil on canvas</li>
</ul>
</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/VisualArtwork">
<link itemprop="sameAs" href="http://rdf.freebase.com/rdf/m.0439_q" />
<h1 itemprop="name" lang="fr">La trahison des images </h1>
<p>
A <span itemprop="artform">painting</span> also known as
<span>The Treason of Images</span> or
<span itemprop="alternateName">The Treachery of Images</span>.
</p>
<img itemprop="image" src="http://http://upload.wikimedia.org/wikipedia/en/b/b9/MagrittePipe.jpg" />
<div itemprop="description">
<p>
The painting shows a pipe. Below it, Magritte painted,
<q lang="fr">Ceci n'est pas une pipe.</q>, French for
"This is not a pipe."
</p>
<p>
His statement is taken to mean that the painting itself is not a pipe.
The painting is merely an image of a pipe. Hence, the description,
"this is not a pipe."
</p>
<p>
Similarly, the image shown above is neither a pipe nor even a painting,
but rather a digital photograph.
</p>
<p>
The painting is sometimes given as an example of meta message conveyed
by paralanguage. Compare with Korzybski's <q>The word is not the thing</q>
and <q>The map is not the territory</q>.
</div>
<ul>
<li>Artist:
<span itemprop="creator" itemscope itemtype="http://schema.org/Person">
<a itemprop="sameAs" href="https://www.freebase.com/m/06h88">
<span itemprop="name">René Magritte</span>
</a>
</span>
</li>
<li>Dimensions:
<span itemprop="width" itemscope itemtype="http://schema.org/Distance">940 mm</span> ×
<span itemprop="height" itemscope itemtype="http://schema.org/Distance">635 mm</span>
</li>
<li>Materials:
<span itemprop="artMedium">oil</span> on <span itemprop="artworkSurface">canvas</span>
</li>
</ul>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="VisualArtwork">
<link property="sameAs" href="http://rdf.freebase.com/rdf/m.0439_q" />
<h1 property="name" lang="fr">La trahison des images </h1>
<p>
A <span property="artform">painting</span> also known as
<span>The Treason of Images</span> or
<span property="alternateName">The Treachery of Images</span>.
</p>
<img property="image" src="http://http://upload.wikimedia.org/wikipedia/en/b/b9/MagrittePipe.jpg" />
<div property="description">
<p>
The painting shows a pipe. Below it, Magritte painted,
<q lang="fr">Ceci n'est pas une pipe.</q>, French for
"This is not a pipe."
</p>
<p>
His statement is taken to mean that the painting itself is not a pipe.
The painting is merely an image of a pipe. Hence, the description,
"this is not a pipe."
</p>
<p>
Similarly, the image shown above is neither a pipe nor even a painting,
but rather a digital photograph.
</p>
<p>
The painting is sometimes given as an example of meta message conveyed
by paralanguage. Compare with Korzybski's <q>The word is not the thing</q>
and <q>The map is not the territory</q>.
</div>
<ul>
<li>Artist:
<span property="creator" typeof="Person">
<a property="sameAs" href="https://www.freebase.com/m/06h88">
<span property="name">René Magritte</span>
</a>
</span>
</li>
<li>Dimensions:
<span property="width" typeof="Distance">940 mm</span> ×
<span property="height" typeof="Distance">635 mm</span>
</li>
<li>Materials:
<span property="artMedium">oil</span> on <span property="artworkSurface">canvas</span>
</li>
</ul>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "VisualArtwork",
"name": "La trahison des images",
"alternateName": "The Treachery of Images",
"image": "http://upload.wikimedia.org/wikipedia/en/b/b9/MagrittePipe.jpg",
"description": "The painting shows a pipe. Below it, Magritte...",
"creator": [
{
"@type": "Person",
"name": "René Magritte",
"sameAs": "https://www.freebase.com/m/06h88"
}
],
"width": [
{
"@type": "Distance",
"name": "940 mm"
}
],
"height": [
{
"@type": "Distance",
"name": "635 mm"
}
],
"artMedium": "oil",
"artworkSurface": "canvas"
}
</script>
TYPES: VisualArtwork
PRE-MARKUP:
Multiple materials: A piece of Installation Art which uses multiple instances of the material property.
<div>
<h1>My Bed</h1>
<p>
My Bed, first created in <time datetime="1998">1998</time>,
is an installation by the British artist Tracey Emin.
</p>
<img src="http://upload.wikimedia.org/wikipedia/en/9/9d/Emin-My-Bed.jpg" />
<div>
<p>
<cite>My Bed</cite> was exhibited at the Tate Gallery in
<time datetime="1998">1999</time> as one
of the shortlisted works for the Turner Prize. It consisted of her
bed with bedroom objects in an abject state, and gained much media
attention. Although it did not win the prize, its notoriety has
persisted.
</div>
<ul>
<li>Artist: <a href="https://www.freebase.com/m/015sxw">Tracey Emin</li>
</ul>
<p>
The artwork generated considerable media furore, particularly over the
fact that the bedsheets were stained with bodily secretions and the floor
had items from the artist's room (such as condoms, a pair of knickers with
menstrual period stains, other detritus, and functional, everyday objects,
including a pair of slippers). The bed was presented in the state that
Emin claimed it had been when she said she had not got up from it for
several days due to suicidal depression brought on by relationship
difficulties.
</p>
</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/VisualArtwork">
<link itemprop="sameAs" href="http://rdf.freebase.com/rdf/m.0dbwsn" />
<h1 itemprop="name">My Bed</h1>
<p>
My Bed, first created in <time itemprop="dateCreated" datetime="1998">1998</time>,
is an <span itemprop="artform">installation</span> by the British artist Tracey Emin.
</p>
<img itemprop="image" src="http://upload.wikimedia.org/wikipedia/en/9/9d/Emin-My-Bed.jpg" />
<div itemprop="description">
<p>
<cite>My Bed</cite> was exhibited at the Tate Gallery in
<time datetime="1998">1999</time> as one
of the shortlisted works for the Turner Prize. It consisted of her
bed with bedroom objects in an abject state, and gained much media
attention. Although it did not win the prize, its notoriety has
persisted.
</div>
<ul>
<li>Artist:
<span itemprop="creator" itemscope itemtype="http://schema.org/Person">
<a itemprop="sameAs" href="https://www.freebase.com/m/015sxw">
<span itemprop="name">Tracey Emin</span>
</a>
</span>
</li>
</ul>
<p>
The artwork generated considerable media furore, particularly over the
fact that the <span itemprop="artMedium">bedsheets</span> were stained
with bodily secretions and the floor had items from the artist's room
(such as <span itemprop="artMedium">condoms</span>,
<span itemprop="artMedium">a pair of knickers</span> with menstrual
period stains, other detritus, and functional, everyday objects,
including a <span itemprop="artMedium">pair of slippers</span>). The
<span itemprop="artMedium">bed</span> was presented in the state that
Emin claimed it had been when she said she had not got up from it for
several days due to suicidal depression brought on by relationship
difficulties.
</p>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="VisualArtwork">
<link property="sameAs" href="http://rdf.freebase.com/rdf/m.0dbwsn" />
<h1 property="name">My Bed</h1>
<p>
My Bed, first created in <time property="dateCreated" datetime="1998">1998</time>,
is an <span property="artform">installation</span> by the British artist Tracey Emin.
</p>
<img property="image" src="http://upload.wikimedia.org/wikipedia/en/9/9d/Emin-My-Bed.jpg" />
<div property="description">
<p>
<cite>My Bed</cite> was exhibited at the Tate Gallery in
<time datetime="1998">1999</time> as one
of the shortlisted works for the Turner Prize. It consisted of her
bed with bedroom objects in an abject state, and gained much media
attention. Although it did not win the prize, its notoriety has
persisted.
</div>
<ul>
<li>Artist:
<span property="creator" typeof="Person">
<a property="sameAs" href="https://www.freebase.com/m/015sxw">
<span property="name">Tracey Emin</span>
</a>
</span>
</li>
</ul>
<p>
The artwork generated considerable media furore, particularly over the
fact that the <span property="artMedium">bedsheets</span> were stained
with bodily secretions and the floor had items from the artist's room
(such as <span property="artMedium">condoms</span>,
<span property="artMedium">a pair of knickers</span> with menstrual
period stains, other detritus, and functional, everyday objects,
including a <span property="artMedium">pair of slippers</span>). The
<span property="artMedium">bed</span> was presented in the state that
Emin claimed it had been when she said she had not got up from it for
several days due to suicidal depression brought on by relationship
difficulties.
</p>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "VisualArtwork",
"sameAs": "http://rdf.freebase.com/rdf/m.0dbwsn",
"name": "My Bed",
"dateCreated": "1998",
"artform": "installation",
"image": "http://upload.wikimedia.org/wikipedia/en/9/9d/Emin-My-Bed.jpg",
"description": "My Bed was exhibited at the Tate Gallery in...",
"creator": [
{
"@type": "Person",
"name": "Tracey Emin",
"sameAs": "https://www.freebase.com/m/015sxw"
}
],
"artMedium": "bedsheets",
"artMedium": "condoms",
"artMedium": "a pair of knickers",
"artMedium": "pair of slippers",
"artMedium": "bed"
}
</script>
TYPES: VisualArtwork
PRE-MARKUP:
Example showing artEdition property in use for a piece of artwork that was created as a series of multiple identical items
<div>
<h1>Still Life under the Lamp</h1>
<p>
Print from <time datetime="1962">1962</time>
by Pablo Picasso. Numbered from the edition of 50,
each signed by the artist in pencil, lower right: Picasso.
</p>
<img src="http://www.pada.net/Photos/38/Full/picasso.lamp.jpg" />
<div>
<p>
<cite>Still Life under the Lamp</cite>, from 1962, made when the artist
was eighty years old, are counted among Picasso’s most important works
in linocut, a technique that he explored in the late 1950s and early
1960s. The progressive proofs show the step by step sequence by which
Picasso created his linocut images showing the development of the
image into its final form.
</p>
</div>
<ul>
<li>Artist: <a href="https://www.freebase.com/m/07pj7mx">Pablo Picasso</li>
<li>Dimensions: 25 3/16 inches × 20 3/4 inches</li>
<li>Materials: linoprint on paper</li>
<li>
See also <a href="http://www.pada.net/members/memPicFull.php/38/367">here</a>
and <a href="http://www.britishmuseum.org/about_us/news_and_press/press_releases/2014/picasso_linocuts.aspx">here</a>.
</ul>
</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/VisualArtwork">
<link itemprop="sameAs" href="http://www.pada.net/members/memPicFull.php/38/367" />
<h1 itemprop="name">Still Life under the Lamp</h1>
<p>
<span itemprop="artform">Print</span> from <time itemprop="dateCreated" datetime="1962">1962</time>
by Pablo Picasso. Numbered from the edition of <span itemprop="artEdition">50</span>,
each signed by the artist in pencil, lower right: Picasso.
</p>
<img itemprop="image" src="http://www.pada.net/Photos/38/Full/picasso.lamp.jpg" />
<div itemprop="description">
<p>
<cite>Still Life under the Lamp</cite>, from 1962, made when the artist
was eighty years old, are counted among Picasso’s most important works
in linocut, a technique that he explored in the late 1950s and early
1960s. The progressive proofs show the step by step sequence by which
Picasso created his linocut images showing the development of the
image into its final form.
</p>
</div>
<ul>
<li>Artist:
<span itemprop="creator" itemscope itemtype="http://schema.org/Person">
<a itemprop="sameAs" href="https://www.freebase.com/m/07pj7mx">
<span itemprop="name">Pablo Picasso</span>
</a>
</span>
</li>
<li>Dimensions:
<span itemprop="width" itemscope itemtype="http://schema.org/Distance">25 3/16 inches</span> ×
<span itemprop="height" itemscope itemtype="http://schema.org/Distance">20 3/4 inches</span>
</li>
<li>Materials:
<span itemprop="artMedium">linoprint</span> on <span itemprop="artworkSurface">paper</span>
</li>
<li>
See also <a href="http://www.pada.net/members/memPicFull.php/38/367">here</a>
and <a href="http://www.britishmuseum.org/about_us/news_and_press/press_releases/2014/picasso_linocuts.aspx">here</a>.
</ul>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="VisualArtwork">
<link property="sameAs" href="http://www.pada.net/members/memPicFull.php/38/367" />
<h1 property="name">Still Life under the Lamp</h1>
<p>
<span property="artform">Print</span> from <time property="dateCreated" datetime="1962">1962</time>
by Pablo Picasso. Numbered from the edition of <span property="artEdition">50</span>,
each signed by the artist in pencil, lower right: Picasso.
</p>
<img property="image" src="http://www.pada.net/Photos/38/Full/picasso.lamp.jpg" />
<div property="description">
<p>
<cite>Still Life under the Lamp</cite>, from 1962, made when the artist
was eighty years old, are counted among Picasso’s most important works
in linocut, a technique that he explored in the late 1950s and early
1960s. The progressive proofs show the step by step sequence by which
Picasso created his linocut images showing the development of the
image into its final form.
</p>
</div>
<ul>
<li>Artist:
<span property="creator" typeof="Person">
<a property="sameAs" href="https://www.freebase.com/m/07pj7mx">
<span property="name">Pablo Picasso</span>
</a>
</span>
</li>
<li>Dimensions:
<span property="width" typeof="Distance">25 3/16 inches</span> ×
<span property="height" typeof="Distance">20 3/4 inches</span>
</li>
<li>Materials:
<span property="artMedium">linoprint</span> on <span property="artworkSurface">paper</span>
</li>
<li>
See also <a href="http://www.pada.net/members/memPicFull.php/38/367">here</a>
and <a href="http://www.britishmuseum.org/about_us/news_and_press/press_releases/2014/picasso_linocuts.aspx">here</a>.
</ul>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "VisualArtwork",
"sameAs": "http://www.pada.net/members/memPicFull.php/38/367",
"name": "Still Life under the Lamp",
"dateCreated": "1962",
"artform": "print",
"artEdition": "50",
"image": "http://www.pada.net/Photos/38/Full/picasso.lamp.jpg",
"description": "Still Life under the Lamp, from 1962, made when...",
"creator": [
{
"@type": "Person",
"name": "Pablo Picasso",
"sameAs": "https://www.freebase.com/m/07pj7mx"
}
],
"width": [
{
"@type": "Distance",
"name": "25 3/16 inches"
}
],
"height": [
{
"@type": "Distance",
"name": "20 3/4 inches"
}
],
"artMedium": "linoprint",
"artworkSurface": "paper"
}
</script>
TYPES: FakeEntryNeeded, FixMeSomeDay
PRE-MARKUP:
MICRODATA:
RDFA:
JSON: