-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathsdo-screeningevent-examples.txt
More file actions
133 lines (115 loc) · 3.49 KB
/
sdo-screeningevent-examples.txt
File metadata and controls
133 lines (115 loc) · 3.49 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
TYPES: #eg-0419 ScreeningEvent, Movie, MovieTheater
PRE-MARKUP:
<div>
<h1>Jaws 3-D"</h1>
<div>Jaws 3-D shown in 3D.</div>
<p>Location: <div>
<span itemprop="name">ACME Cinemas 10</span>
<span>screenCount: 10</span>
</div>
</p>
<div>
<span>Jaws 3-D</span>
<link href="www.imdb.com/title/tt0085750/" />
</div>
<p>Language: <span>English</span></p>
<p>Film format: <span>3D</span></p>
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/ScreeningEvent">
<h1 itemprop="name">Jaws 3-D"</h1>
<div itemprop="description">Jaws 3-D shown in 3D.</div>
<p>Location: <span itemprop="location" itemscope itemtype="https://schema.org/MovieTheater">
<span itemprop="name">ACME Cinemas 10</span>
<span itemprop="screenCount">10</span>
</span>
</p>
<div itemprop="workPresented" itemscope itemtype="https://schema.org/Movie">
<span itemprop="name">Jaws 3-D</span>
<link itemprop="sameAs" href="www.imdb.com/title/tt0085750/"/>
</div>
<p>Language: <span itemprop="inLanguage" content="en">English</span></p>
<p>Film format: <span itemprop="videoFormat">3D</span></p>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="https://schema.org/ScreeningEvent">
<h1 property="name">
Jaws 3-D"
</h1>
<div property="description">
Jaws 3-D shown in 3D.
</div>Location:
<div property="location" typeof="https://schema.org/MovieTheater">
<span property="name">ACME Cinemas 10</span> <span property="screenCount">10</span>
</div>
<div property="workPresented" typeof="https://schema.org/Movie">
<span property="name">Jaws 3-D</span>
<link property="sameAs" href="www.imdb.com/title/tt0085750/">
</div>
<p>
Language: <span property="inLanguage" content="en">English</span>
</p>
<p>
Film format: <span property="videoFormat">3D</span>
</p>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ScreeningEvent",
"name": "Jaws 3-D",
"description": "Jaws 3-D shown in 3D.",
"location": {
"@type": "MovieTheater",
"name": "ACME Cinemas 10",
"screenCount": 10
},
"workPresented": {
"@type": "Movie",
"name": "Jaws 3-D",
"sameAs": "www.imdb.com/title/tt0085750/"
},
"inLanguage": "en",
"videoFormat": "3D"
}
</script>
TYPES: #eg-0420 Movie, countryOfOrigin
PRE-MARKUP:
Ghostbusters was produced by Black Rhino in the United States.
MICRODATA:
<div itemscope itemtype="https://schema.org/Movie">
<h1 itemprop="name">Ghostbusters</h1>
<div itemprop="productionCompany" itemscope itemtype="https://schema.org/Organization">
Produced by: <span itemprop="name">Black Rhino</span><p>
</div>
<div itemprop="countryOfOrigin" itemscope itemtype="https://schema.org/Country">
Country: <span itemprop="name" content="USA">United States</span><p>
</div>
</div>
RDFA:
<div vocab="https://schema.org/" typeof="Movie">
<h1 property="name">Ghostbusters</h1>
<div property="productionCompany" typeof="Organization">
Produced by: <span property="name">Black Rhino</span><p>
</div>
<div property="countryOfOrigin" typeof="Country">
Country: <span property="name" content="USA">United States</span><p>
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Movie",
"name": "Ghostbusters",
"productionCompany": {
"@type": "Organization",
"name": "Black Rhino"
},
"countryOfOrigin": {
"@type": "Country",
"name": "USA"
}
}
</script>