Add links
Linked Data Notifications
AbbreviationLDN
StatusW3C Recommendation
Year started2016; 8 years ago (2016)[1][2]
First publishedJuly 26, 2016; 7 years ago (2016-07-26)[1][2]
Latest versionW3C Recommendation
May 2, 2017; 6 years ago (2017-05-02)[3]
Preview versionEditor's Draft
April 30, 2017; 6 years ago (2017-04-30)
Organization
CommitteeSocial Web Working Group
Editors
  • Sarven Capadisli[3]
  • Amy Guy[3]
Base standards
Related standards
DomainSemantic Web, communications protocol
Websitewww.w3.org/TR/ldn/

Linked Data Notifications (LDN) [3] is a W3C Recommendation that describes a communications protocol based on HTTP, URI, and RDF on how servers (receivers) can receive messages pushed to them by applications (senders), as well as how other applications (consumers) may retrieve those messages. Any web resource (like a HTML page) can advertise a receiving endpoint (inbox) for notification messages. Messages are expressed in RDF, and can contain arbitrary data.

Motivation

The web is a decentralized system of web resources, published by multiple organizations and individuals. Web resources, such as web pages and more formally structured linked data, frequently include links to other resources across the web, and may comment or describe them in various ways. The receiving end, however, are not generally notified of such link creation, and thus are unable to provide backlinks without manual intervention. Interactions within social media platforms, such as comments on a news article, are currently "locked" within the platform and hard to access across the web.

Several linkback mechanisms exists, and are commonly used between blog systems, e.g. a "response" post in blog B about a post in blog A causes B's platform to send a pingback to be shown on the original blog A. These mechanisms are, however, generally limited in which structured information can be sent, and the notifications themselves do not form part of the decentralized web and may be difficult to consume by any third party application.

A key motivation for LDN is to support notifications between decentralized Web applications,[4] including web browsers who - not having their own HTTP server - are unable to generate a HTTP link for their reply messages. Another motivation is to structure notifications as RDF statements using any Controlled vocabulary - so that any consuming application can select the particular information they understand.

Protocol

  • A sender or receiver performs a GET or HEAD to an existing HTTP resource. Its inbox URI is discovered from either:
    • A Link: relation in the HTTP response headers of type http://www.w3.org/ns/ldp#inbox
    • An RDF statement embedded in the HTTP body using the RDF property http://www.w3.org/ns/ldp#inbox
  • A sender creates a new notification (e.g. as JSON-LD), which it POSTs to the inbox URI.
    • The receiver creates a new HTTP resource containing the posted notification and responds with 201 Created and the created URI.
  • A consumer retrieves RDF from the discovered inbox URI using GET, then:
    • The consumer parses the response body to find RDF statements with the property http://www.w3.org/ns/ldp#contains. The object of these statements give the URIs to the accepted LDN notifications.
    • The consumer retrieve any of the linked notification using GET and process their RDF in an application-specific manner.
    • Notifications remain accessible, and can therefore be linked to and described in other web resources.

At each stage, the sender and consumer may perform content negotiation to send or receive in any mutually agreed RDF serialization format, but a compliant LDN receiver must support at least JSON-LD.

Examples

A sender or consumer discovers the inbox for a given URI, in this example using the HEAD method:

HEAD https://example.org/article/5 HTTP/1.1
HTTP/1.1 200 OK
Link: <https://example.org/inbox/7>; rel="http://www.w3.org/ns/ldp#inbox"

A sender sends a notification to the discovered inbox, in this example using the Schema.org vocabulary:

POST https://example.org/inbox/7 HTTP/1.1
Content-Type: application/ld+json

{ "@context": "http://schema.org",
  "@type": "ReviewAction",
  "object" : {
    "@id": "https://example.org/article/5"
  },
  "agent": { 
    "@type": "Person",
    "name": "Alice" 
  },
  "result": {
    "@type": "Review",
    "reviewBody": "This article is the best I've ever seen!"
  }
}
HTTP/1.1 201 Created
Location: http://example.org/inbox/f44f3f11

A consumer lists the content of the discovered inbox to find 3 notifications:

GET https://example.org/inbox/7 HTTP/1.1
Content-Type: application/ld+json
HTTP/1.1 200 OK
Content-Type: application/ld+json

{
  "@context": "http://www.w3.org/ns/ldp",
  "@id": "https://example.org/inbox/7",
  "contains": [
    "https://example.org/inbox/5c6ca040",
    "https://cdn.example.org/inbox/92d72f00",
    "https://example.org/inbox/f44f3f11",
  ]
}

Note that the URIs of the original resource, inbox and notifications are not required to be hosted on the same HTTP server (e.g. they may be on a CDN). The consumer follows the links for any notifications they wish to retrieve.

In this example, the consumer retrieves the new f44f3f11 notification, with content negotiation to prefer the Turtle RDF format:

GET https://example.org/inbox/f44f3f11 HTTP/1.1
Accept: application/ld+json;q=0.9, text/turtle;q=1.5
HTTP/1.1 200 OK
Content-Type: text/turtle 

@prefix schema: <http://schema.org/> .
 [   a schema:ReviewAction;
     schema:agent [
       a schema:Person;
       schema:name "Alice"
     ];
     schema:object <https://example.org/article/5>;
     schema:result [
       a schema:Review;
       schema:reviewBody "This article is the best I've ever seen!"
     ]
 ] .

Implementations

Several LDN implementations exists,[4][5] covering senders, consumers and receivers, including:

Any Linked Data Platform (LDP) implementations are also conforming Linked Data Notification receivers as LDN is a strict subset of LDP.[4]

References

  1. ^ a b "Linked Data Notifications Publication History - W3C". W3C. n.d. Retrieved 2021-04-21.
  2. ^ a b Capadisli, Sarven; Guy, Amy, eds. (2016-07-26). "Linked Data Notifications". W3C. Social Web Working Group. https://www.w3.org/TR/ldn/. Retrieved 2021-04-21.
  3. ^ a b c d Capadisli, Sarven; Guy, Amy, eds. (2017-05-02). "Linked Data Notifications". W3C. Social Web Working Group. https://www.w3.org/TR/ldn/. Retrieved 2021-04-21.
  4. ^ a b c Capadisli, Sarven; Guy, Amy; Lange, Christoph; Auer, Sören; Sambra, Andrei; Berners-Lee, Tim (2017-05-28). "Linked Data Notifications: A Resource-Centric Communication Protocol". The Semantic Web. Lecture Notes in Computer Science. Vol. 10249. pp. 537–553. doi:10.1007/978-3-319-58068-5_33. ISBN 978-3-319-58067-8. http://csarven.ca/linked-data-notifications. {{cite book}}: |journal= ignored (help)
  5. ^ "LDN Test Reports and Summary". linkedresearch.org. 2016-09-18. Retrieved 2017-05-26.