Skip to content

Commit

Permalink
forms Thing Description core vocabulary #1199
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiankb committed Nov 2, 2021
1 parent ce539d4 commit 47e5106
Showing 1 changed file with 15 additions and 21 deletions.
36 changes: 15 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1172,11 +1172,7 @@ <h2>Core Vocabulary Definitions</h2>
relate to the specified Thing Description.</td><td>optional</td><td><a>Array</a> of <a href="#link"><code>Link</code></a></td></tr>
<tr class="rfc2119-table-assertion" id="td-vocab-forms--Thing"><td><code>forms</code></td><td>Set of form hypermedia controls that describe how
an operation can be performed. Forms are
serializations of Protocol Bindings. In this
version of TD, all operations that can be
described at the Thing level are concerning how
to interact with the Thing's <a href='#propertyaffordance'>Properties</a> collectively
at once.</td><td>optional</td><td><a>Array</a> of <a href="#form"><code>Form</code></a></td></tr>
serializations of Protocol Bindings. Thing-level forms are used to describe endpoints for a group of interaction affordances.</td><td>optional</td><td><a>Array</a> of <a href="#form"><code>Form</code></a></td></tr>
<tr class="rfc2119-table-assertion" id="td-vocab-security--Thing"><td><code>security</code></td><td>Set of security definition names, chosen from
those defined in <code>securityDefinitions</code>.
These must all be satisfied for access to
Expand Down Expand Up @@ -6776,14 +6772,7 @@ <h1>JSON Schema for TD Instance Validation</h1>
"minimum": 0
},
"multipleOf": {
"oneOf": [
{
"type": "integer"
},
{
"type": "number"
}
]
"$ref": "#/definitions/multipleOfDefinition"
},
"properties": {
"additionalProperties": {
Expand Down Expand Up @@ -6815,6 +6804,18 @@ <h1>JSON Schema for TD Instance Validation</h1>
}
}
},
"multipleOfDefinition": {
"anyOf": [
{
"type": "integer",
"exclusiveMinimum": 0
},
{
"type": "number",
"exclusiveMinimum": 0
}
]
},
"form_element_property": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -7171,14 +7172,7 @@ <h1>JSON Schema for TD Instance Validation</h1>
"minimum": 0
},
"multipleOf": {
"oneOf": [
{
"type": "integer"
},
{
"type": "number"
}
]
"$ref": "#/definitions/multipleOfDefinition"
},
"properties": {
"additionalProperties": {
Expand Down

0 comments on commit 47e5106

Please sign in to comment.