forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdo-identifier-examples.txt
102 lines (83 loc) · 3.1 KB
/
sdo-identifier-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
TYPES: #identifier-1 identifier
PRE-MARKUP:
<p>
Title: Library linked data in the cloud : OCLC's experiments with new models of resource description<br/>
Author: Carol Jean Godby<br/>
ISBN: 9781627052191<br/>
oclcnum: 889647468<br/>
Details: <a href="http://www.worldcat.org/oclc/889647468">WorldCat.org</a>
</p>
MICRODATA:
<div itemscope itemtype="http://schema.org/Book">
Title: <span itemprop="name">Library linked data in the cloud : OCLC's experiments with new models of resource description</span><br>
Author: <span itemprop="author">Carol Jean Godby</span><br>
ISBN: <span itemprop="isbn">9781627052191</span><br>
<div itemscope itemprop="identifier" itemtype="http://schema.org/PropertyValue">
<span itemprop="propertyID">OCoLC</span>: <span itemprop="value">889647468</span>
</div><br>
Details: <a itemprop="sameAs" href="http://www.worldcat.org/oclc/889647468">WorldCat.org</a>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="Book">
Title: <span property="name">Library linked data in the cloud : OCLC's experiments with new models of resource description</span><br>
Author: <span property="author">Carol Jean Godby</span><br>
ISBN: <span property="isbn">9781627052191</span><br>
<div property="identifier" typeof="PropertyValue">
<span property="propertyID">OCoLC</span>: <span property="value">889647468</span>
</div>
</div>
<br>
Details: <a property="sameAs" href="http://www.worldcat.org/oclc/889647468">WorldCat.org</a>
JSON:
{
"@context": "http://schema.org/",
"@type": "Book",
"name": "Library linked data in the cloud : OCLC's experiments with new models of resource description",
"author": "Carol Jean Godby",
"isbn": "9781627052191"
"identifier": {
"@type": "PropertyValue",
"propertyID": "OCoLC",
"value": "889647468"
},
"sameAs": "http://www.worldcat.org/oclc/889647468"
}
TYPES: #identifier-2 identifier
PRE-MARKUP:
<div">
Company Record
<h1>A UK Organization Ltd</h1>
Registered office address: 1 A Street, London<br/>
Company Number: 99065782
</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/LocalBusiness">
Company Record
<h1 itemprop="name">A UK Organization Ltd</h1>
Registered office address: <span itemprop="address">1 A Street, London</span><br>
<div itemscope="" itemprop="identifier" itemptype="http://schema.org/PropertyValue">
<span itemprop="propertyID">Company Number</span>: <span itemprop="value">99065782</span>
</div><br>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="LocalBusiness">
Company Record
<h1 property="name">
A UK Organization Ltd</h1>
Registered office address: <span property="address">1 A Street, London</span><br>
<div property="identifier" typeof="PropertyValue">
<span property="propertyID">Company Number</span>: <span property="value">99065782</span>
</div><br>
</div>
JSON:
{
"@context": "http://schema.org/",
"@type": "LocalBusiness",
"name": "A UK Organization Ltd",
"address": "1 A Street, London"
"identifier": {
"@type": "PropertyValue",
"propertyID": "Company Number",
"value": "99065782"
},
}