-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathsdo-creativework-examples.txt
More file actions
352 lines (316 loc) · 10.8 KB
/
sdo-creativework-examples.txt
File metadata and controls
352 lines (316 loc) · 10.8 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
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
TYPES: #eg-0340 Painting, contentLocation, locationCreated
PRE-MARKUP:
<div>
The Church at Auvers by Vincent van Gogh depicts a church in Auvers-sur-Oise, but was created in Saint-Rémy-de-Provence.
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/Painting">
<img itemprop="image" src="https://upload.wikimedia.org/wikipedia/commons/a/ad/Vincent_van_Gogh_-_The_Church_in_Auvers-sur-Oise%2C_View_from_the_Chevet_-_Google_Art_Project.jpg" />
<meta itemprop="sameAs" content="https://en.wikipedia.org/wiki/The_Church_at_Auvers" />
<span itemprop="name">The Church at Auvers</span>
by <div itemprop="creator" itemscope itemtype="https://schema.org/Person">
<span itemprop="name">Vincent van Gogh</span>
</div>,
depicts a church in <div itemprop="contentLocation" itemscope itemtype="https://schema.org/AdministrativeArea">
<span itemprop="name">Auvers-sur-Oise</span>,
</div>
but was created in <div itemprop="locationCreated" itemscope itemtype="https://schema.org/AdministrativeArea">
<span itemprop="name">Saint-Rémy-de-Provence</span>.
</div>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="Painting">
<img property="image" src="https://upload.wikimedia.org/wikipedia/commons/a/ad/Vincent_van_Gogh_-_The_Church_in_Auvers-sur-Oise%2C_View_from_the_Chevet_-_Google_Art_Project.jpg" />
<meta property="sameAs" content="https://en.wikipedia.org/wiki/The_Church_at_Auvers" />
<span property="name">The Church at Auvers</span>
by <div property="creator" typeof="Person">
<span property="name">Vincent van Gogh</span>
</div>,
depicts a church in <div property="contentLocation" typeof="AdministrativeArea">
<span property="name">Auvers-sur-Oise</span>,
</div>
but was created in <div property="locationCreated" typeof="AdministrativeArea">
<span property="name">Saint-Rémy-de-Provence</span>.
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Painting",
"name": "The Church at Auvers",
"image": "https://upload.wikimedia.org/wikipedia/commons/a/ad/Vincent_van_Gogh_-_The_Church_in_Auvers-sur-Oise%2C_View_from_the_Chevet_-_Google_Art_Project.jpg",
"sameAs": "https://en.wikipedia.org/wiki/The_Church_at_Auvers",
"creator": {
"@type": "Person",
"name": "Vincent van Gogh"
},
"contentLocation": {
"@type": "AdministrativeArea",
"name": "Auvers-sur-Oise"
},
"locationCreated": {
"@type": "AdministrativeArea",
"name": "Saint-Rémy-de-Provence"
}
}
</script>
TYPES: #eg-0341 Conversation, Message
PRE-MARKUP:
<div>
A conversation between two people re: duck season vs rabbit season.
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/Conversation">
<meta itemprop="name" content="Duck Season vs Rabbit Season" />
<meta itemprop="sameAs" content="https://www.youtube.com/watch?v=9-k5J4RxQdE" />
<div itemscope itemprop="hasPart" itemtype="https://schema.org/Message">
<div itemscope itemprop="sender" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Bugs Bunny" />
</div>
<div itemscope itemprop="recipient" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Daffy Duck" />
</div>
<div itemscope itemprop="about" itemtype="https://schema.org/Thing">
<meta itemprop="name" content="Duck Season" />
</div>
<meta itemprop="datePublished" content="2016-02-29" />
</div>
<div itemscope itemprop="hasPart" itemtype="https://schema.org/Message">
<div itemscope itemprop="sender" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Daffy Duck" />
</div>
<div itemscope itemprop="recipient" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Bugs Bunny" />
</div>
<div itemscope itemprop="about" itemtype="https://schema.org/Thing">
<meta itemprop="name" content="Rabbit Season" />
</div>
<meta itemprop="datePublished" content="2016-03-01" />
</div>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="Conversation">
<meta property="name" content="Duck Season vs Rabbit Season" />
<meta property="sameAs" content="https://www.youtube.com/watch?v=9-k5J4RxQdE" />
<div property="hasPart" typeof="Message">
<div property="sender" typeof="Person">
<meta property="name" content="Bugs Bunny" />
</div>
<div property="recipient" typeof="Person">
<meta property="name" content="Daffy Duck" />
</div>
<div property="about" typeof="Thing">
<meta property="name" content="Duck Season" />
</div>
<meta itemprop="datePublished" content="2016-02-29" />
</div>
<div property="hasPart" typeof="Message">
<div property="sender" typeof="Person">
<meta property="name" content="Daffy Duck" />
</div>
<div property="recipient" typeof="Person">
<meta property="name" content="Bugs Bunny" />
</div>
<div property="about" typeof="Thing">
<meta property="name" content="Rabbit Season" />
</div>
<meta itemprop="datePublished" content="2016-03-01" />
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Conversation",
"name": "Duck Season vs Rabbit Season",
"sameAs": "https://www.youtube.com/watch?v=9-k5J4RxQdE",
"hasPart": [
{
"@type": "Message",
"sender": {
"@type": "Person",
"name": "Bugs Bunny"
},
"recipient": {
"@type": "Person",
"name": "Daffy Duck"
},
"about": {
"@type": "Thing",
"name": "Duck Season"
},
"datePublished": "2016-02-29"
},
{
"@type": "Message",
"sender": {
"@type": "Person",
"name": "Daffy Duck"
},
"recipient": {
"@type": "Person",
"name": "Bugs Bunny"
},
"about": {
"@type": "Thing",
"name": "Rabbit Season"
},
"datePublished": "2016-03-01"
}
]
}
</script>
TYPES: #eg-0342 Message
PRE-MARKUP:
A message from Dom Portwood to Peter Gibbons about TPS reports.
MICRODATA:
<div itemscope itemtype="https://schema.org/Message">
<div itemscope itemprop="sender" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Dom Portwood" />
</div>
<div itemscope itemprop="recipient" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Peter Gibbons" />
</div>
<div itemscope itemprop="about" itemtype="https://schema.org/Thing">
<meta itemprop="name" content="TPS reports" />
</div>
<meta itemprop="datePublished" content="2016-02-29" />
<meta itemprop="dateRead" content="2016-03-03" />
<div itemscope itemprop="messageAttachment" itemtype="https://schema.org/CreativeWork">
<meta itemprop="name" content="New coversheet" />
</div>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="Message">
<div property="sender" typeof="Person">
<meta property="name" content="Dom Portwood" />
</div>
<div property="recipient" typeof="Person">
<meta property="name" content="Peter Gibbons" />
</div>
<div property="about" typeof="Thing">
<meta property="name" content="TPS reports" />
</div>
<meta property="datePublished" content="2016-02-29" />
<meta property="dateRead" content="2016-03-03" />
<div property="messageAttachment" typeof="CreativeWork">
<meta property="name" content="New coversheet" />
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Message",
"sender": {
"@type": "Person",
"name": "Dom Portwood"
},
"recipient": {
"@type": "Person",
"name": "Peter Gibbons"
},
"about": {
"@type": "Thing",
"name": "TPS reports"
},
"datePublished": "2016-02-29",
"dateRead": "2016-03-03",
"messageAttachment": {
"@type": "CreativeWork",
"name": "New coversheet"
}
}
</script>
TYPES: #eg-0343 EmailMessage, toRecipient, bccRecipient, ccRecipient
PRE-MARKUP:
An message from Dom Portwood to Peter Gibbons about TPS reports, cc'ing Bill Lumbergh and bcc'ing tps-consulting@example.com
MICRODATA:
<div itemscope itemtype="https://schema.org/EmailMessage">
<div itemscope itemprop="sender" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Dom Portwood" />
<span itemprop="email">dportwood@example.com</span>
</div>
<div itemscope itemprop="toRecipient" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Peter Gibbons" />
<span itemprop="email">pgibbons@example.com</span>
</div>
<div itemscope itemprop="ccRecipient" itemtype="https://schema.org/Person">
<meta itemprop="name" content="Bill Lumbergh" />
<span itemprop="email">blumbergh@example.com</span>
</div>
<div itemscope itemprop="bccRecipient" itemtype="https://schema.org/ContactPoint">
<span itemprop="email">tps-consulting@example.com</span>
</div>
<div itemscope itemprop="about" itemtype="https://schema.org/Thing">
<meta itemprop="name" content="TPS reports" />
</div>
<meta itemprop="datePublished" content="2016-02-29" />
<meta itemprop="dateRead" content="2016-03-03" />
<div itemscope itemprop="messageAttachment" itemtype="https://schema.org/CreativeWork">
<meta itemprop="name" content="New coversheet" />
</div>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="EmailMessage">
<div property="sender" typeof="Person">
<meta property="name" content="Dom Portwood" />
<span property="email">dportwood@example.com</span>
</div>
<div property="toRecipient" typeof="Person">
<meta property="name" content="Peter Gibbons" />
<span property="email">pgibbons@example.com</span>
</div>
<div property="ccRecipient" typeof="Person">
<meta property="name" content="Bill Lumbergh" />
<span property="email">blumbergh@example.com</span>
</div>
<div property="bccRecipient" typeof="ContactPoint">
<span property="email">tps-consulting@example.com</span>
</div>
<div property="about" typeof="Thing">
<meta property="name" content="TPS reports" />
</div>
<meta property="datePublished" content="2016-02-29" />
<meta property="dateRead" content="2016-03-03" />
<div property="messageAttachment" typeof="CreativeWork">
<meta property="name" content="New coversheet" />
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "EmailMessage",
"sender": {
"@type": "Person",
"name": "Dom Portwood",
"email": "dportwood@example.com"
},
"toRecipient": {
"@type": "Person",
"name": "Peter Gibbons",
"email": "pgibbons@example.com"
},
"ccRecipient": {
"@type": "Person",
"name": "Bill Lumbergh",
"email": "blumbergh@example.com"
},
"ccRecipient": {
"@type": "ContactPoint",
"email": "tps-consulting@example.com"
},
"about": {
"@type": "Thing",
"name": "TPS reports"
},
"datePublished": "2016-02-29",
"dateRead": "2016-03-03",
"messageAttachment": {
"@type": "CreativeWork",
"name": "New coversheet"
}
}
</script>