1
+ json-ld.org
2
+ ===========
3
+
1
4
Introduction
2
5
------------
3
6
4
- .. image :: https://badges.gitter.im/json-ld/json-ld.org.svg
5
- :alt: Join the chat at https://gitter.im/json-ld/json-ld.org
6
- :target: https://gitter.im/ json-ld/json-ld .org?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
7
+ [ ![ Join the chat at https://gitter.im/json-ld/json-ld.org ] ( https:// badges.gitter.im/json-ld/json-ld.org.svg)] ( https://gitter.im/json-ld/json-ld.org )
8
+
9
+ This is the source for the https://json-ld.org/ website.
7
10
8
11
JSON-LD (JavaScript Object Notation for Linking Data) is a lightweight Linked
9
12
Data format. It is easy for humans to read and write. It is easy for machines
@@ -15,21 +18,23 @@ These properties make JSON-LD an ideal Linked Data interchange language for
15
18
JavaScript environments, Web services, and unstructured databases such as
16
19
CouchDB and MongoDB.
17
20
18
- If you are already using JSON-LD, add yourself to the ` list of users `_ in our wiki.
21
+ If you are already using JSON-LD, add yourself to the [ list of users] [ ] in our wiki.
19
22
20
23
21
24
A Simple Example
22
25
----------------
23
26
24
27
A simple example of a JSON object with added semantics::
25
28
26
- {
27
- "@context": "https://json-ld.org/contexts/person.jsonld",
28
- "@id": "http://dbpedia.org/resource/John_Lennon",
29
- "name": "John Lennon",
30
- "born": "1940-10-09",
31
- "spouse": "http://dbpedia.org/resource/Cynthia_Lennon"
32
- }
29
+ ``` json
30
+ {
31
+ "@context" : " https://json-ld.org/contexts/person.jsonld" ,
32
+ "@id" : " http://dbpedia.org/resource/John_Lennon" ,
33
+ "name" : " John Lennon" ,
34
+ "born" : " 1940-10-09" ,
35
+ "spouse" : " http://dbpedia.org/resource/Cynthia_Lennon"
36
+ }
37
+ ```
33
38
34
39
The example above describes a person whose name is John Lennon. The difference
35
40
between regular JSON and JSON-LD is that the JSON-LD object above uniquely
@@ -49,15 +54,15 @@ The Specifications
49
54
If you are a developer, you may be interested in the official JSON-LD W3C
50
55
specifications:
51
56
52
- * ` JSON-LD 1.1 - A JSON-based Serialization for Linked Data `_
53
- * ` JSON-LD 1.1 Processing Algorithms and API `_
54
- * ` JSON-LD 1.1 Framing `_
57
+ * [ JSON-LD 1.1 - A JSON-based Serialization for Linked Data] [ ]
58
+ * [ JSON-LD 1.1 Processing Algorithms and API] [ ]
59
+ * [ JSON-LD 1.1 Framing] [ ]
55
60
56
61
A list of all previous specification drafts is also available.
57
62
58
63
https://json-ld.org/spec/
59
64
60
- .. _ list of users : https://github.com/json-ld/json-ld.org/wiki/Users-of-JSON-LD
61
- .. _ JSON -LD 1.1 - A JSON-based Serialization for Linked Data : http://www.w3.org/TR/json-ld/
62
- .. _ JSON -LD 1.1 Processing Algorithms and API: http ://www.w3.org/TR/json-ld-api/
63
- .. _ JSON -LD 1.1 Framing: http ://www.w3.org/TR/json-ld-framing/
65
+ [ list of users] : https://github.com/json-ld/json-ld.org/wiki/Users-of-JSON-LD
66
+ [ JSON -LD 1.1 - A JSON-based Serialization for Linked Data] : http://www.w3.org/TR/json-ld/
67
+ [ JSON -LD 1.1 Processing Algorithms and API] : https ://www.w3.org/TR/json-ld-api/
68
+ [ JSON -LD 1.1 Framing] : https ://www.w3.org/TR/json-ld-framing/
0 commit comments