forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdo-map-examples.txt
49 lines (38 loc) · 1.04 KB
/
sdo-map-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
TYPES: #map-1 Map, VenueMap
PRE-MARKUP:
<p>
Welcome to a fictional SF art museum.
Here is our <a href="/map1234/">venue map</a>
</p>
MICRODATA:
<p itemscope itemtype="http://schema.org/Museum">
Welcome to a fictional <span itemprop="name">SF art museum.</span>
Here is our
<span itemscope itemprop="hasMap" itemtype="http://schema.org/Map">
<link itemprop="mapType" href="http://schema.org/VenueMap" />
<a itemprop="url" href="/map1234/">venue map</a></span>
</p>
RDFA:
<p vocab="http://schema.org/" typeof="Museum">
Welcome to a fictional <span property="name">SF art museum.</span>
Here is our
<span property="hasMap" typeof="Map">
<link itemprop="mapType" href="http://schema.org/VenueMap" />
<a property="url" href="/map1234/">venue map</a></span>
</p>
JSON:
{
"@context": "http://schema.org/",
"@type": "Museum",
"name": "SF art museum",
"hasMap": {
"@type": "Map",
"mapType": { "@id": "http://schema.org/VenueMap" },
"url": "http://art-sf.example.com/map1234/"
}
}
TYPES: FakeEntryNeeded, FixMeSomeDay
PRE-MARKUP:
MICRODATA:
RDFA:
JSON: