forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdo-screeningevent-examples.txt
142 lines (120 loc) · 3.56 KB
/
sdo-screeningevent-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
TYPES: #screening-1 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="http://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="http://schema.org/MovieTheater">
<span itemprop="name">ACME Cinemas 10</span>
<span itemprop="screenCount">10</span>
</span>
</p>
<div itemprop="workPresented" itemscope itemtype="http://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="http://schema.org/" typeof="http://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="http://schema.org/MovieTheater">
<span property="name">ACME Cinemas 10</span> <span property="screenCount">10</span>
</div>
<div property="workPresented" typeof="http://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": "http://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: #screening-2 Movie, countryOfOrigin
PRE-MARKUP:
Ghostbusters was produced by Black Rhino in the United States.
MICRODATA:
<div itemscope itemtype="http://schema.org/Movie">
<h1 itemprop="name">Ghostbusters</h1>
<div itemprop="productionCompany" itemscope itemtype="http://schema.org/Organization">
Produced by: <span itemprop="name">Black Rhino</span><p>
</div>
<div itemprop="countryOfOrigin" itemscope itemtype="http://schema.org/Country">
Country: <span itemprop="name" content="USA">United States</span><p>
</div>
</div>
RDFA:
<div vocab="http://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": "http://schema.org/",
"@type": "Movie",
"name": "Ghostbusters",
"productionCompany": {
"@type": "Organization",
"name": "Black Rhino"
},
"countryOfOrigin": {
"@type": "Country",
"name": "USA"
}
}
</script>
TYPES: FakeEntryNeeded, FixMeSomeDay
PRE-MARKUP:
MICRODATA:
RDFA:
JSON: