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
25 lines (25 loc) · 917 Bytes
/
jsonld.js
File metadata and controls
25 lines (25 loc) · 917 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
const jsonld = {
// Add as the respecConfig localBiblio variable
// Extend or override global respec references
localBiblio: {
// aliases to known references
"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"
},
"PROMISES": {
title: 'Promise Objects',
href: 'https://github.com/domenic/promises-unwrapping',
authors: ['Domenic Denicola'],
status: 'unofficial',
date: 'January 2014'
}
},
conversions: {
"https://w3c.github.io/json-ld-syntax/": "http://www.w3.org/TR/json-ld11/",
"https://w3c.github.io/json-ld-api/": "http://www.w3.org/TR/json-ld11-api/",
"https://w3c.github.io/json-ld-framing/": "http://www.w3.org/TR/json-ld11-framing/"
}
};