forked from ruzyysmartt/json-ld-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsonld.js
More file actions
88 lines (88 loc) · 2.57 KB
/
jsonld.js
File metadata and controls
88 lines (88 loc) · 2.57 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
const jsonld = {
// Add as the respecConfig localBiblio variable
// Extend or override global respec references
localBiblio: {
// aliases to known references
"JSON-LD10": {
title: "JSON-LD 1.0",
href: "https://www.w3.org/TR/2014/REC-json-ld-20140116/",
publisher: "W3C",
date: "16 January 2014",
status: "W3C Recommendation",
authors: [
"Manu Sporny",
"Gregg Kellogg",
"Marcus Langhaler"
]
},
"JSON-LD10-API": {
title: "JSON-LD 1.0 Processing Algorithms And API",
href: "https://www.w3.org/TR/2014/REC-json-ld-api-20140116/",
publisher: "W3C",
date: "16 January 2014",
status: "W3C Recommendation",
authors: [
"Marcus Langhaler",
"Gregg Kellogg",
"Manu Sporny"
]
},
"JSON-LD10-FRAMING": {
title: "JSON-LD Framing 1.0",
href: "https://json-ld.org/spec/ED/json-ld-framing/20120830/",
publisher: "W3C",
date: "30 August 2012",
status: "Unofficial Draft",
authors: [
"Manu Sporny",
"Gregg Kellogg",
"David Longley",
"Marcus Langhaler"
]
},
"IEEE-754-2008": {
title: "IEEE 754-2008 Standard for Floating-Point Arithmetic",
href: "http://standards.ieee.org/findstds/standard/754-2008.html",
publisher: "Institute of Electrical and Electronics Engineers",
date: "2008"
},
"JSON.API": {
title: "JSON API",
href: "https://jsonapi.org/format/",
authors: [
'Steve Klabnik',
'Yehuda Katz',
'Dan Gebhardt',
'Tyler Kellen',
'Ethan Resnick'
],
status: 'unofficial',
date: '29 May 2015'
},
"JCS": {
title: "JSON Canonicalization Scheme (JCS)",
href: 'https://tools.ietf.org/html/draft-rundgren-json-canonicalization-scheme-17',
authors: ['A. Rundgren', 'B. Jordan', 'S. Erdtman'],
publisher: 'Network Working Group',
status: 'Internet-Draft',
date: '20 January 2020'
},
// These necessary as specref uses the wrong URLs
"RFC7231": {
title: 'Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content',
href: 'https://tools.ietf.org/html/rfc7231',
authors: ['R. Fielding, Ed.', 'J. Reschke, Ed'],
pubisher: 'IETF',
status: 'Proposed Standard',
date: 'June 2014'
},
"RFC8288": {
title: 'Web Linking',
href: 'https://tools.ietf.org/html/rfc8288',
authors: ['M. Nottingham'],
pubisher: 'IETF',
status: 'Proposed Standard',
date: 'October 2017'
},
}
};