forked from ChelseaKR/ctdl-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmixed_problems.html
More file actions
29 lines (29 loc) · 912 Bytes
/
Copy pathmixed_problems.html
File metadata and controls
29 lines (29 loc) · 912 Bytes
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
<!doctype html>
<!--
Everything that can go wrong in one page: a malformed JSON-LD block, a block
with a context this tool does not resolve, a literal where CTDL wants an
identifier, and an item that uses itemref.
-->
<html lang="en">
<head>
<script type="application/ld+json">
{ "@context": "https://schema.org", "@type": "Course", "name": }
</script>
<script type="application/ld+json">
{"@context": "https://example.org/private-context.jsonld", "@type": "Course", "name": "Hidden"}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Course",
"name": "Blueprint Reading",
"provider": "Example Community College",
"isPartOf": {"@type": "Course", "name": "Welding Fundamentals"}
}
</script>
</head>
<body>
<p id="shared" itemprop="name">Shared property</p>
<div itemscope itemtype="https://schema.org/Organization" itemref="shared"></div>
</body>
</html>