-
Notifications
You must be signed in to change notification settings - Fork 918
Expand file tree
/
Copy pathissue-1759-examples.txt
More file actions
96 lines (78 loc) · 2.95 KB
/
issue-1759-examples.txt
File metadata and controls
96 lines (78 loc) · 2.95 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
TYPES: #eg-0257 materialExtent, CreativeWork
PRE-MARKUP:
<div>
Name: Assorted collection of items<br/>
Extent: 285 A boxes, 8 OS boxes (plus 45 T boxes, 50 A boxes, 13 OS boxes / items uncatalogued)<br/>
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/CreativeWork">
<link itemprop="additionalType" href="https://schema.org/ArchiveComponent"/>
Name: <span itemprop="name">Assorted collection of items</span><br/>
Extent: <span itemprop="materialExtent">285 A boxes, 8 OS boxes (plus 45 T boxes, 50 A boxes, 13 OS boxes / items uncatalogued)</span><br/>
</div>
RDFA:
<div vocab="https://schema.org/" type="CreativeWork ArchiveComponent">
Name: <span property="name">Assorted collection of items</span><br/>
Extent: <span property="materialExtent">285 A boxes, 8 OS boxes (plus 45 T boxes, 50 A boxes, 13 OS boxes / items uncatalogued)</span><br/>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": ["CreativeWork","ArchiveComponent"],
"name": "Assorted collection of items",
"materialExtent": "285 A boxes, 8 OS boxes (plus 45 T boxes, 50 A boxes, 13 OS boxes / items uncatalogued)"
}
</script>
TYPES: #eg-0258 materialExtent, CreativeWork
PRE-MARKUP:
<div>
Name: Assorted collection of items<br/>
Extent: 1 folder containing 5 design drawings<br/>
</div>
MICRODATA:
<div itemscope itemtype="https://schema.org/CreativeWork">
<link itemprop="additionalType" href="https://schema.org/ArchiveComponent"/>
Name: <span itemprop="name">Assorted collection of items</span><br/>
Extent: <div>
<div itemprop="materialExtent" itemscope itemtype="https://schema.org/QuantitativeValue">
<span itemprop="value">1</span> <span itemprop="unitText">folder</span>
</div>
containing
<div itemprop="materialExtent" itemscope itemtype="https://schema.org/QuantitativeValue">
<span itemprop="value">5</span> <span itemprop="unitText">design drawings</span>
</div>
</div><br/>
</div>
RDFA:
<div vocab="https://schema.org/" type="CreativeWork ArchiveComponent">
Name: <span property="name">Assorted collection of items</span><br/>
Extent: <div>
<div property="materialExtent" type="QuantitativeValue">
<span property="value">1</span> <span property="unitText">folder</span>
</div>
containing
<div property="materialExtent" type="QuantitativeValue">
<span property="value">5</span> <span property="unitText">design drawings</span>
</div>
</div><br/>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": ["CreativeWork","ArchiveComponent"],
"materialExtent": [
{
"@type": "QuantitativeValue",
"unitText": "folder",
"value": "1"
},
{
"@type": "QuantitativeValue",
"unitText": "design drawings",
"value": "5"
}
]
}
</script>