forked from w3c/wot-thing-description
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Overview.html
4861 lines (4788 loc) · 186 KB
/
Overview.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="generator" content=
"HTML Tidy for HTML5 for Linux version 5.2.0">
<meta charset="utf-8">
<meta name="generator" content="ReSpec 23.4.0">
<meta name="viewport" content=
"width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
/* --- EXAMPLES --- */
span.example-title {
text-transform: none;
}
aside.example, div.example, div.illegal-example {
padding: 0.5em;
margin: 1em 0;
position: relative;
clear: both;
}
div.illegal-example { color: red }
div.illegal-example p { color: black }
aside.example, div.example {
padding: .5em;
border-left-width: .5em;
border-left-style: solid;
border-color: #e0cb52;
background: #fcfaee;
}
aside.example div.example {
border-left-width: .1em;
border-color: #999;
background: #fff;
}
aside.example div.example span.example-title {
color: #999;
}
</style>
<style>
/* --- ISSUES/NOTES --- */
div.issue-title, div.note-title , div.ednote-title, div.warning-title {
padding-right: 1em;
min-width: 7.5em;
color: #b9ab2d;
}
div.issue-title { color: #e05252; }
div.note-title, div.ednote-title { color: #2b2; }
div.warning-title { color: #f22; }
div.issue-title span, div.note-title span, div.ednote-title span, div.warning-title span {
text-transform: uppercase;
}
div.note, div.issue, div.ednote, div.warning {
margin-top: 1em;
margin-bottom: 1em;
}
.note > p:first-child, .ednote > p:first-child, .issue > p:first-child, .warning > p:first-child { margin-top: 0 }
.issue, .note, .ednote, .warning {
padding: .5em;
border-left-width: .5em;
border-left-style: solid;
}
div.issue, div.note , div.ednote, div.warning {
padding: 1em 1.2em 0.5em;
margin: 1em 0;
position: relative;
clear: both;
}
span.note, span.ednote, span.issue, span.warning { padding: .1em .5em .15em; }
.issue {
border-color: #e05252;
background: #fbe9e9;
}
.issue.closed span.issue-number {
text-decoration: line-through;
}
.note, .ednote {
border-color: #52e052;
background: #e9fbe9;
}
.warning {
border-color: #f11;
border-width: .2em;
border-style: solid;
background: #fbe9e9;
}
.warning-title:before{
content: "⚠"; /*U+26A0 WARNING SIGN*/
font-size: 3em;
float: left;
height: 100%;
padding-right: .3em;
vertical-align: top;
margin-top: -0.5em;
}
li.task-list-item {
list-style: none;
}
input.task-list-item-checkbox {
margin: 0 0.35em 0.25em -1.6em;
vertical-align: middle;
}
.issue a.respec-gh-label {
padding: 5px;
margin: 0 2px 0 2px;
font-size: 10px;
text-transform: none;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
position: relative;
bottom: 2px;
}
.issue a.respec-label-dark {
color: #fff;
background-color: #000;
}
.issue a.respec-label-light {
color: #000;
background-color: #fff;
}
</style>
<title>Web of Things (WoT) Thing Description</title>
<style>
.example {
border-color: #EA1252;
background: #FEF11E;
counter-increment: example;
overflow: auto;
clear: both;
}
</style>
<style id="respec-mainstyle">
/*****************************************************************
* ReSpec 3 CSS
* Robin Berjon - http://berjon.com/
*****************************************************************/
/* Override code highlighter background */
.hljs {
background: transparent !important;
}
/* --- INLINES --- */
h1 abbr,
h2 abbr,
h3 abbr,
h4 abbr,
h5 abbr,
h6 abbr,
a abbr {
border: none;
}
dfn {
font-weight: bold;
}
a.internalDFN {
color: inherit;
border-bottom: 1px solid #99c;
text-decoration: none;
}
a.externalDFN {
color: inherit;
border-bottom: 1px dotted #ccc;
text-decoration: none;
}
a.bibref {
text-decoration: none;
}
#references :target {
background: #eaf3ff;
}
cite .bibref {
font-style: normal;
}
code {
color: #c83500;
}
th code {
color: inherit;
}
/* --- TOC --- */
.toc a,
.tof a {
text-decoration: none;
}
a .secno,
a .figno {
color: #000;
}
ul.tof,
ol.tof {
list-style: none outside none;
}
.caption {
margin-top: 0.5em;
font-style: italic;
}
/* --- TABLE --- */
table.simple {
border-spacing: 0;
border-collapse: collapse;
border-bottom: 3px solid #005a9c;
}
.simple th {
background: #005a9c;
color: #fff;
padding: 3px 5px;
text-align: left;
}
.simple th[scope="row"] {
background: inherit;
color: inherit;
border-top: 1px solid #ddd;
}
.simple td {
padding: 3px 10px;
border-top: 1px solid #ddd;
}
.simple tr:nth-child(even) {
background: #f0f6ff;
}
/* --- DL --- */
.section dd>p:first-child {
margin-top: 0;
}
.section dd>p:last-child {
margin-bottom: 0;
}
.section dd {
margin-bottom: 1em;
}
.section dl.attrs dd,
.section dl.eldef dd {
margin-bottom: 0;
}
#issue-summary>ul,
.respec-dfn-list {
column-count: 2;
}
#issue-summary li,
.respec-dfn-list li {
list-style: none;
}
details.respec-tests-details {
margin-left: 1em;
display: inline-block;
vertical-align: top;
}
details.respec-tests-details>* {
padding-right: 2em;
}
details.respec-tests-details[open] {
z-index: 999999;
position: absolute;
border: thin solid #cad3e2;
border-radius: 0.3em;
background-color: white;
padding-bottom: 0.5em;
}
details.respec-tests-details[open]>summary {
border-bottom: thin solid #cad3e2;
padding-left: 1em;
margin-bottom: 1em;
line-height: 2em;
}
details.respec-tests-details>ul {
width: 100%;
margin-top: -0.3em;
}
details.respec-tests-details>li {
padding-left: 1em;
}
a[href].self-link:hover {
opacity: 1;
text-decoration: none;
background-color: transparent;
}
h2,
h3,
h4,
h5,
h6 {
position: relative;
}
aside.example .marker > a.self-link {
color: inherit;
}
h2>a.self-link,
h3>a.self-link,
h4>a.self-link,
h5>a.self-link,
h6>a.self-link {
border: none;
color: inherit;
font-size: 83%;
height: 2em;
left: -1.6em;
opacity: .5;
position: absolute;
text-align: center;
text-decoration: none;
top: 0;
transition: opacity .2s;
width: 2em;
}
h2>a.self-link::before,
h3>a.self-link::before,
h4>a.self-link::before,
h5>a.self-link::before,
h6>a.self-link::before {
content: "§";
display: block;
}
@media (max-width: 767px) {
dd {
margin-left: 0;
}
/* Don't position self-link in headings off-screen */
h2>a.self-link,
h3>a.self-link,
h4>a.self-link,
h5>a.self-link,
h6>a.self-link {
left: auto;
top: auto;
}
}
@media print {
.removeOnSave {
display: none;
}
}
</style>
<style>
/*
github.com style (c) Vasily Polovnyov <[email protected]>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #333;
background: #f8f8f8;
}
.hljs-comment,
.hljs-quote {
color: #998;
font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
color: #333;
font-weight: bold;
}
.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
color: #008080;
}
.hljs-string,
.hljs-doctag {
color: #d14;
}
.hljs-title,
.hljs-section,
.hljs-selector-id {
color: #900;
font-weight: bold;
}
.hljs-subst {
font-weight: normal;
}
.hljs-type,
.hljs-class .hljs-title {
color: #458;
font-weight: bold;
}
.hljs-tag,
.hljs-name,
.hljs-attribute {
color: #000080;
font-weight: normal;
}
.hljs-regexp,
.hljs-link {
color: #009926;
}
.hljs-symbol,
.hljs-bullet {
color: #990073;
}
.hljs-built_in,
.hljs-builtin-name {
color: #0086b3;
}
.hljs-meta {
color: #999;
font-weight: bold;
}
.hljs-deletion {
background: #fdd;
}
.hljs-addition {
background: #dfd;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
</style>
<link rel="stylesheet" href=
"https://www.w3.org/StyleSheets/TR/2016/W3C-WD">
<link rel="canonical" href=
"https://www.w3.org/TR/wot-thing-description/">
<script id="initialUserConfig" type="application/json">
{
"specStatus": "WD",
"processVersion": 2018,
"shortName": "wot-thing-description",
"copyrightStart": 2017,
"noLegacyStyle": true,
"inlineCSS": true,
"noIDLIn": true,
"format": "markdown",
"wg": "Web of Things Working Group",
"wgURI": "https://www.w3.org/WoT/WG/",
"wgPublicList": "public-wot-wg",
"edDraftURI": "https://w3c.github.io/wot-thing-description/",
"githubAPI": "https://api.github.com/repos/w3c/wot-thing-description",
"issueBase": "https://www.github.com/w3c/wot-thing-description/issues",
"editors": [
{
"name": "Sebastian Kaebisch",
"w3cid": "43064",
"company": "Siemens AG",
"companyURL": "https://www.siemens.com/"
},
{
"name": "Takuki Kamiya",
"w3cid": "29376",
"company": "Fujitsu Laboratories of America, Inc.",
"companyURL": "https://www.fujitsu.com/"
}
],
"localBiblio": {
"JSON-SCHEMA-VALIDATION": {
"title": "JSON Schema Validation: A Vocabulary for Structural Validation of JSON",
"href": "https://tools.ietf.org/html/draft-handrews-json-schema-validation-00",
"authors": [
"Austin Wright",
"Henry Andrews",
"Geraint Luff"
],
"status": "Internet-Draft",
"publisher": "IETF",
"id": "json-schema-validation"
},
"JSON-SCHEMA-CORE": {
"title": "JSON Schema: A Media Type for Describing JSON Documents",
"href": "https://tools.ietf.org/html/draft-handrews-json-schema-00",
"authors": [
"Austin Wright",
"Henry Andrews"
],
"status": "Internet-Draft",
"publisher": "IETF"
},
"OPENAPI": {
"title": "OpenAPI Specification: Version 3.0.1",
"href": "https://swagger.io/specification/",
"authors": [
"Darrel Miller",
"Jason Harmon",
"Jeremy Whitlock",
"Kris Hahn",
"Marsh Gardiner",
"Mike Ralphson",
"Rob Dolin",
"Ron Ratovsky",
"Tony Tam"
],
"publisher": "OpenAPI Initiative, Linux Foundation",
"date": "7 December 2017",
"id": "openapi"
},
"MEDIATYPES": {
"title": "Media Types",
"href": "https://www.iana.org/assignments/media-types/media-types.xhtml",
"publisher": "IANA",
"id": "mediatypes"
},
"WOT-ARCHITECTURE": {
"title": "Web of Things Architecture",
"href": "https://w3c.github.io/wot-architecture/",
"authors": [
"Kazuo Kajimoto",
"Matthias Kovatsch",
"Uday Davuluru"
],
"publisher": "W3C",
"date": "20 August 2017",
"id": "wot-architecture"
},
"WOT-PROTOCOL-BINDING": {
"title": "Web of Things Protocol Binding Templates",
"href": "https://w3c.github.io/wot-binding-templates/",
"authors": [
"Michael Koster"
],
"publisher": "W3C",
"date": "12 January 2018",
"id": "wot-protocol-binding"
}
},
"otherLinks": [
{
"key": "Contributors",
"data": [
{
"value": "In the GitHub repository",
"href": "https://github.com/w3c/wot-thing-description/graphs/contributors"
}
]
},
{
"key": "Repository",
"data": [
{
"value": "We are on GitHub",
"href": "https://github.com/w3c/wot-thing-description/"
},
{
"value": "File a bug",
"href": "https://github.com/w3c/wot-thing-description/issues"
}
]
}
],
"publishISODate": "2018-10-21T00:00:00.000Z",
"generatedSubtitle": "Working Draft 21 October 2018"
}
</script>
<meta name="description" content=
"This document describes a formal model and a common representation for a Web of Things (WoT) Thing Description. A Thing Description describes the metadata and interfaces of Things, where a Thing is an abstraction of a physical or virtual entity that provides interactions to and participates in the Web of Things. Thing Descriptions provide a set of interactions based on a small vocabulary that makes it possible both to integrate diverse devices and to allow diverse applications to interoperate. Thing Descriptions, by default, are encoded in a JSON format that also allows JSON-LD processing. The latter provides a powerful foundation to represent knowledge about Things in a machine-understandable way. A Thing Description instance can be hosted by the Thing itself or hosted externally when a Thing has resource restrictions (e.g., limited memory space) or when a Web of Things-compatible legacy device is retrofitted with a Thing Description.">
</head>
<body class="h-entry toc-inline">
<div class="head">
<a href="https://www.w3.org/" class="logo"><img alt="W3C" src=
"https://www.w3.org/StyleSheets/TR/2016/logos/W3C" width="72"
height="48"></a>
<h1 id="title" class="title p-name">Web of Things (WoT) Thing
Description</h1>
<h2><abbr title="World Wide Web Consortium">W3C</abbr> Working
Draft <time class="dt-published" datetime="2018-10-21">21
October 2018</time></h2>
<dl>
<dt>This version:</dt>
<dd>
<a class="u-url" href=
"https://www.w3.org/TR/2018/WD-wot-thing-description-20181021/">
https://www.w3.org/TR/2018/WD-wot-thing-description-20181021/</a>
</dd>
<dt>Latest published version:</dt>
<dd>
<a href=
"https://www.w3.org/TR/wot-thing-description/">https://www.w3.org/TR/wot-thing-description/</a>
</dd>
<dt>Latest editor's draft:</dt>
<dd>
<a href=
"https://w3c.github.io/wot-thing-description/">https://w3c.github.io/wot-thing-description/</a>
</dd>
<dt>Previous version:</dt>
<dd>
<a class="u-url" href=
"https://www.w3.org/TR/2018/WD-wot-thing-description-20180405/">
https://www.w3.org/TR/2018/WD-wot-thing-description-20180405/</a>
</dd>
<dt>Editors:</dt>
<dd class="p-author h-card vcard" data-editor-id="43064">
<span class="p-name fn">Sebastian Kaebisch</span>
(<a class="p-org org h-org h-card" href=
"https://www.siemens.com/">Siemens AG</a>)
</dd>
<dd class="p-author h-card vcard" data-editor-id="29376">
<span class="p-name fn">Takuki Kamiya</span> (<a class=
"p-org org h-org h-card" href=
"https://www.fujitsu.com/">Fujitsu Laboratories of America,
Inc.</a>)
</dd>
<dt>Contributors:</dt>
<dd>
<a href=
"https://github.com/w3c/wot-thing-description/graphs/contributors">
In the GitHub repository</a>
</dd>
<dt>Repository:</dt>
<dd>
<a href="https://github.com/w3c/wot-thing-description/">We
are on GitHub</a>
</dd>
<dd>
<a href=
"https://github.com/w3c/wot-thing-description/issues">File
a bug</a>
</dd>
</dl>
<p class="copyright"><a href=
"https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2017-2018 <a href="https://www.w3.org/"><abbr title=
"World Wide Web Consortium">W3C</abbr></a><sup>®</sup>
(<a href="https://www.csail.mit.edu/"><abbr title=
"Massachusetts Institute of Technology">MIT</abbr></a>,
<a href="https://www.ercim.eu/"><abbr title=
"European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>,
<a href="https://www.keio.ac.jp/">Keio</a>, <a href=
"http://ev.buaa.edu.cn/">Beihang</a>). <abbr title=
"World Wide Web Consortium">W3C</abbr> <a href=
"https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">
liability</a>, <a href=
"https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">
trademark</a> and <a rel="license" href=
"https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document">
permissive document license</a> rules apply.</p>
<hr title="Separator for header">
</div>
<div class="ednote" id="issue-container-generatedID">
<div role="heading" class="ednote-title marker" id="h-ednote"
aria-level="2">
<span>Editor's note</span><span style=
"text-transform: none">: First draft based on Simplified
TD</span>
</div>
<p class="">This is the first draft of the new simplified TD
approach based on JSON-LD 1.1. Some definitions are not
finished yet and are still in progress. A stable Thing
Description deliverable version based on JSON-LD 1.0 can be
found <a href=
"https://www.w3.org/TR/2018/WD-wot-thing-description-20180405/">
here</a>.</p>
</div>
<section id="abstract" class="introductory">
<h2>Abstract</h2>
<p>This document describes a formal model and a common
representation for a Web of Things (WoT) Thing Description. A
Thing Description describes the metadata and interfaces of
Things, where a Thing is an abstraction of a physical or
virtual entity that provides interactions to and participates
in the Web of Things. Thing Descriptions provide a set of
interactions based on a small vocabulary that makes it possible
both to integrate diverse devices and to allow diverse
applications to interoperate. Thing Descriptions, by default,
are encoded in a JSON format that also allows JSON-LD
processing. The latter provides a powerful foundation to
represent knowledge about Things in a machine-understandable
way. A Thing Description instance can be hosted by the Thing
itself or hosted externally when a Thing has resource
restrictions (e.g., limited memory space) or when a Web of
Things-compatible legacy device is retrofitted with a Thing
Description.</p>
</section>
<section id="sotd" class="introductory">
<h2>Status of This Document</h2>
<p><em>This section describes the status of this document at
the time of its publication. Other documents may supersede this
document. A list of current <abbr title=
"World Wide Web Consortium">W3C</abbr> publications and the
latest revision of this technical report can be found in the
<a href="https://www.w3.org/TR/"><abbr title=
"World Wide Web Consortium">W3C</abbr> technical reports
index</a> at https://www.w3.org/TR/.</em></p>
<p>Implementers need to be aware that this specification is
considered unstable. Vendors interested in implementing this
specification before it eventually reaches the Candidate
Recommendation phase should subscribe to the <a href=
"https://github.com/w3c/wot-thing-description">repository</a>
and take part in the discussions.</p>
<div class="ednote" id="issue-container-generatedID-0">
<div role="heading" class="ednote-title marker" id=
"h-ednote-0" aria-level="3">
<span>Editor's note</span><span style=
"text-transform: none">: The W3C WoT WG is asking for
feedback</span>
</div>
<p class="">Please contribute to this draft using the
<a href="https://github.com/w3c/wot-thing-description/issues">
GitHub Issue</a> feature of the <a href=
"https://github.com/w3c/wot-thing-description/">WoT Thing
Description</a> repository. For feedback on security and
privacy considerations, please use the <a href=
"https://github.com/w3c/wot-security/issues">WoT Security and
Privacy</a> Issues, as security and privacy is cross-cutting
over all our documents.</p>
</div>
<p>This document was published by the <a href=
"https://www.w3.org/WoT/WG/">Web of Things Working Group</a> as
a Working Draft. This document is intended to become a W3C
Recommendation.</p>
<p>Comments regarding this document are welcome. Please send
them to <a href=
"mailto:[email protected]">[email protected]</a>
(<a href="https://lists.w3.org/Archives/Public/public-wot-wg/">archives</a>).</p>
<p>Changes from the previous publication can be found in
<a href="#changes">Appendix B</a>. A <a href=
"diff.html">diff-marked version</a> of this document is also
available for comparison purposes.</p>
<p>Publication as a Working Draft does not imply endorsement by
the <abbr title="World Wide Web Consortium">W3C</abbr>
Membership. This is a draft document and may be updated,
replaced or obsoleted by other documents at any time. It is
inappropriate to cite this document as other than work in
progress.</p>
<p>This document was produced by a group operating under the
<a href=
"https://www.w3.org/Consortium/Patent-Policy/"><abbr title=
"World Wide Web Consortium">W3C</abbr> Patent Policy</a>.
<abbr title="World Wide Web Consortium">W3C</abbr> maintains a
<a rel="disclosure" href=
"https://www.w3.org/2004/01/pp-impl/95969/status">public list
of any patent disclosures</a> made in connection with the
deliverables of the group; that page also includes instructions
for disclosing a patent. An individual who has actual knowledge
of a patent which the individual believes contains <a href=
"https://www.w3.org/Consortium/Patent-Policy/#def-essential">Essential
Claim(s)</a> must disclose the information in accordance with
<a href=
"https://www.w3.org/Consortium/Patent-Policy/#sec-Disclosure">section
6 of the <abbr title="World Wide Web Consortium">W3C</abbr>
Patent Policy</a>.</p>
<p>This document is governed by the <a id=
"w3c_process_revision" href=
"https://www.w3.org/2019/Process-20190301/">1 March 2019
<abbr title="World Wide Web Consortium">W3C</abbr> Process
Document</a>.</p>
<p>
<span class="at-risk">Text and table entries highlighted with a yellow background
indicates a feature associated with an at-risk assertion for which
insufficient implementation experience exists.</span>
When an entire section is at-risk the words
"<span class="at-risk">This section is at risk.</span>"
will be placed at the start of the section and highlighted with a yellow background.</span>
</p>
</section>
<nav id="toc">
<h2 class="introductory" id="table-of-contents">Table of
Contents</h2>
<ol class="toc">
<li class="tocline">
<a href="#introduction" class="tocxref"><span class=
"secno">1.</span> Introduction</a>
</li>
<li class="tocline">
<a href="#terminology" class="tocxref"><span class=
"secno">2.</span> Terminology</a>
</li>
<li class="tocline">
<a href="#namespaces" class="tocxref"><span class=
"secno">3.</span> Namespaces</a>
</li>
<li class="tocline">
<a href="#conformance" class="tocxref"><span class=
"secno">4.</span> Conformance</a>
</li>
<li class="tocline">
<a href="#sec-vocabulary-definition" class=
"tocxref"><span class="secno">5.</span> Information
Model</a>
<ol class="toc">
<li class="tocline">
<a href="#overview" class="tocxref"><span class=
"secno">5.1</span> Overview</a>
</li>
<li class="tocline">
<a href="#sec-core-vocabulary-definition" class=
"tocxref"><span class="secno">5.2</span> Core
Vocabulary Definition</a>
<ol class="toc">
<li class="tocline">
<a href="#thing" class="tocxref"><span class=
"secno">5.2.1</span> <code>Thing</code></a>
</li>
<li class="tocline">
<a href="#interactionpattern" class=
"tocxref"><span class="secno">5.2.2</span>
<code>InteractionPattern</code></a>
</li>
<li class="tocline">
<a href="#property" class="tocxref"><span class=
"secno">5.2.3</span> <code>Property</code></a>
</li>
<li class="tocline">
<a href="#action" class="tocxref"><span class=
"secno">5.2.4</span> <code>Action</code></a>
</li>
<li class="tocline">
<a href="#event" class="tocxref"><span class=
"secno">5.2.5</span> <code>Event</code></a>
</li>
<li class="tocline">
<a href="#form" class="tocxref"><span class=
"secno">5.2.6</span> <code>Form</code></a>
</li>
<li class="tocline">
<a href="#link" class="tocxref"><span class=
"secno">5.2.7</span> <code>Link</code></a>
</li>
</ol>
</li>
<li class="tocline">
<a href="#sec-data-schema-vocabulary-definition" class=
"tocxref"><span class="secno">5.3</span> Data Schema
Vocabulary Definition</a>
<ol class="toc">
<li class="tocline">
<a href="#dataschema" class="tocxref"><span class=
"secno">5.3.1</span> <code>DataSchema</code></a>
</li>
<li class="tocline">
<a href="#arrayschema" class="tocxref"><span class=
"secno">5.3.2</span> <code>ArraySchema</code></a>
</li>
<li class="tocline">
<a href="#objectschema" class=
"tocxref"><span class="secno">5.3.3</span>
<code>ObjectSchema</code></a>
</li>
<li class="tocline">
<a href="#booleanschema" class=
"tocxref"><span class="secno">5.3.4</span>
<code>BooleanSchema</code></a>
</li>
<li class="tocline">
<a href="#numberschema" class=
"tocxref"><span class="secno">5.3.5</span>
<code>NumberSchema</code></a>
</li>
<li class="tocline">
<a href="#stringschema" class=
"tocxref"><span class="secno">5.3.6</span>
<code>StringSchema</code></a>
</li>
<li class="tocline">
<a href="#integerschema" class=
"tocxref"><span class="secno">5.3.7</span>
<code>IntegerSchema</code></a>
</li>
</ol>
</li>
<li class="tocline">
<a href="#sec-security-vocabulary-definition" class=
"tocxref"><span class="secno">5.4</span> Security
Vocabulary Definition</a>
<ol class="toc">
<li class="tocline">
<a href="#securityscheme" class=
"tocxref"><span class="secno">5.4.1</span>
<code>SecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#nosecurityscheme" class=
"tocxref"><span class="secno">5.4.2</span>
<code>NoSecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#basicsecurityscheme" class=
"tocxref"><span class="secno">5.4.3</span>
<code>BasicSecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#certsecurityscheme" class=
"tocxref"><span class="secno">5.4.4</span>
<code>CertSecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#digestsecurityscheme" class=
"tocxref"><span class="secno">5.4.5</span>
<code>DigestSecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#bearersecurityscheme" class=
"tocxref"><span class="secno">5.4.6</span>
<code>BearerSecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#psksecurityscheme" class=
"tocxref"><span class="secno">5.4.7</span>
<code>PSKSecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#publicsecurityscheme" class=
"tocxref"><span class="secno">5.4.8</span>
<code>PublicSecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#oauth2securityscheme" class=
"tocxref"><span class="secno">5.4.9</span>
<code>OAuth2SecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#apikeysecurityscheme" class=
"tocxref"><span class="secno">5.4.10</span>
<code>APIKeySecurityScheme</code></a>
</li>
<li class="tocline">
<a href="#popsecurityscheme" class=
"tocxref"><span class="secno">5.4.11</span>
<code>PoPSecurityScheme</code></a>
</li>
</ol>
</li>
</ol>
</li>
<li class="tocline">
<a href="#sec-td-serialization" class=
"tocxref"><span class="secno">6.</span> Thing Description
Serialization</a>
<ol class="toc">
<li class="tocline">
<a href="#json-serializiation-section" class=
"tocxref"><span class="secno">6.1</span> Representation
Format</a>
<ol class="toc">
<li class="tocline">
<a href="#sec-thing-as-a-whole-json" class=
"tocxref"><span class="secno">6.1.1</span> Thing as