Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update notification-channel-conformance #131

Closed
wants to merge 3 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions protocol.html
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ <h3 property="schema:name skos:prefLabel">Terminology</h3>

<dl>
<dt about="#notification-channel" property="skos:prefLabel" typeof="skos:Concept"><dfn id="notification-channel">notification channel</dfn></dt>
<dd about="#notification-channel" property="skos:definition">A <em>notification channel</em> is an abstract thing which is identified by a URI and whose properties describe the available communication interface and features.</dd>
<dd about="#notification-channel" property="skos:definition">A <em>notification channel</em> is an abstract thing whose properties describe the available communication interface and features.</dd>
csarven marked this conversation as resolved.
Show resolved Hide resolved
csarven marked this conversation as resolved.
Show resolved Hide resolved

<dt about="#notification-channel-resource" property="skos:prefLabel" typeof="skos:Concept"><dfn id="notification-channel-resource">notification channel resource</dfn></dt>
<dd about="#notification-channel-resource" property="skos:definition">An <em>RDF document</em> [<cite><a class="bibref" href="#bib-rdf11-concepts">RDF11-CONCEPTS</a></cite>] that includes information about the capabilities and features of a notification channel.</dd>
Expand Down Expand Up @@ -592,10 +592,10 @@ <h4 property="schema:name">Notification Channel Conformance</h4>
<p>A Notification Channel has the following properties:</p>

<ul>
<li id="notify-notificationChannel">At least one <code>notificationChannel</code> property whose object describes a notification channel.</li>
<li id="notify-type">At least one <code>type</code> property to indicate the notification channel type (<cite><a href="#notification-channel" rel="rdfs:seeAlso">Notification Channel</a></cite>).</li>
<li id="notify-feature">None, one or many <code>feature</code> property values (<cite><a href="#notification-features" rel="rdfs:seeAlso">Notification Features</a></cite>) to indicate particular features of a notification channel.</li>
<li id="notify-subscription">None or one <code>subscription</code> property value to indicate a subscription resource associated with a notification channel (<a href="#subscription" rel="rdfs:seeAlso">Subscription</a>).</li>
<li id="notify-notificationChannel">At least one <code>notificationChannel</code> property whose object describes a <a href="#notification-channel" rel="rdfs:seeAlso">notification channel</a>.</li>
<li id="notify-subscriptionType">One <code>subscriptionType</code> property to indicate the subscription type (<cite><a href="#subscription-types" rel="rdfs:seeAlso">Subscription Type</a></cite>) a <a href="#notification-channel" rel="rdfs:seeAlso">notification channel</a>.</li>
<li id="notify-subscription">One <code>subscription</code> property value to indicate a <a href="#subscription-resource" rel="rdfs:seeAlso">subscription resource</a> associated with a <a href="#notification-channel" rel="rdfs:seeAlso">notification channel</a> (<a href="#subscription" rel="rdfs:seeAlso">Subscription</a>).</li>
<li id="notify-feature">Zero, one or many <code>feature</code> property values (<cite><a href="#notification-features" rel="rdfs:seeAlso">Notification Features</a></cite>) to indicate particular features of a <a href="#notification-channel" rel="rdfs:seeAlso">notification channel</a>.</li>
</ul>

<figure id="notification-channel-resource-jsonld" class="example listing" rel="schema:hasPart" resource="#notification-channel-resource-jsonld">
Expand All @@ -610,8 +610,7 @@ <h4 property="schema:name">Notification Channel Conformance</h4>
<code> "https://www.w3.org/ns/solid/notification/v1"</code>
<code> ],</code>
<code> "notificationChannel": [{</code>
<code> "id": "websocketNotification",</code>
<code> "type": ["WebSocketSubscription2021"],</code>
<code> "subscriptionType": "WebSocketSubscription2021",</code>
<code> "subscription": "https://websocket.example/subscription",</code>
<code> "feature": ["state", "rate", "endTime"]</code>
<code> }]</code>
Expand Down Expand Up @@ -839,7 +838,7 @@ <h3 property="schema:name">Subscription Types Extension</h3>
<code> "https://www.w3.org/ns/solid/notification/v1",</code>
<code> "https://notification.example/subscription/v1"</code>
<code> ],</code>
<code> "type": "ExampleSubscription2021",</code>
<code> "subscriptionType": "ExampleSubscription2021",</code>
<code> "topic": "https://storage.example/resource",</code>
<code> "custom-property": "custom-value"</code>
<code>}</code></pre>
Expand Down