forked from ChelseaKR/ctdl-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse_jsonld.html
More file actions
32 lines (32 loc) · 910 Bytes
/
Copy pathcourse_jsonld.html
File metadata and controls
32 lines (32 loc) · 910 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
30
31
32
<!doctype html>
<!--
Synthetic provider page. Not copied from any real site: the organization,
the course, and the identifiers are invented for this repository, and the
markup patterns are the ones the schema.org documentation itself shows.
-->
<html lang="en">
<head>
<title>Introduction to Welding</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Course",
"@id": "https://example.edu/courses/weld-101",
"name": "Introduction to Welding",
"description": "A first course in welding.",
"courseCode": "WELD-101",
"inLanguage": "en",
"provider": {
"@type": "Organization",
"@id": "https://example.edu/#org",
"name": "Example Community College",
"email": "admissions@example.edu"
},
"offers": {"@type": "Offer", "price": "450.00", "priceCurrency": "USD"}
}
</script>
</head>
<body>
<h1>Introduction to Welding</h1>
</body>
</html>