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

Add Identifier section to Core Profile - closes #111 #117

Merged
merged 2 commits into from
Feb 23, 2022
Merged
Changes from all 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
26 changes: 23 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ <h2>Profiling Mechanism</h2>
{
"@context": "https://www.w3.org/2019/wot/td/v1",
"id": "urn:dev:ops:32473-WoTLamp-1234",
"profile": "https://www.w3.org/2021/wot/profile/core",
"profile": "https://www.w3.org/2022/wot/profile/core/v1",
"title": "My Lamp",
"description": "A web connected lamp",
...
Expand All @@ -504,8 +504,8 @@ <h2>Profiling Mechanism</h2>
"@context": "https://www.w3.org/2019/wot/td/v1",
"id": "urn:dev:ops:32473-WoTLamp-1234",
"profile": [
"https://www.w3.org/2021/wot/profile/core",
"https://www.w3.org/2021/wot/profile/constrained"
"https://www.w3.org/2022/wot/profile/core/v1",
"https://www.w3.org/2022/wot/profile/constrained/v1"
],
"title": "My Lamp",
"description": "A web connected lamp",
Expand All @@ -520,6 +520,26 @@ <h2>WoT Core Profile</h2>
This section defines the <a>Core Profile</a> by defining a <a>Core
Data Model</a> and a set of <a href="#protocol-binding">Protocol
Binding</a> Rules.

<!-- Identifier -->
<section id="identifier">
<h2>Identifier</h2>
<p class="rfc2119-assertion" id="core-profile-identifier-1">
In order to denote that a given
<a href="https://www.w3.org/TR/wot-architecture/#dfn-thing">Web Thing</a>
conforms to the Core Profile, its Thing Description MUST have a
<a href="https://w3c.github.io/wot-thing-description/#thing">
<code>profile</code></a> member [[wot-thing-description]] with a value
of <code>https://www.w3.org/2022/wot/profile/core/v1</code>.
</p>
<p class="ednote">
The name "Core Profile" and the URI
<code>https://www.w3.org/2022/wot/profile/core/v1</code> have not yet
been finalised and are subject to change (see
<a href="https://github.com/w3c/wot-profile/issues/5">#5</a>).
</p>
</section>

<section id="wot-core-data-model">
<h2>WoT Core Data Model</h2>
<p>
Expand Down