├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── assertionscsv-update.yml │ ├── ci-cd.yaml │ ├── codeql-analysis.yml │ ├── eslint.yml │ └── visual-ci.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── templates │ ├── css.lict │ ├── html.lict │ ├── js.lict │ ├── scss.lict │ └── sh.lict ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── NOTICE.md ├── README.md ├── SECURITY.md ├── examples ├── td │ ├── 1-simple-default │ │ ├── README.txt │ │ ├── basic-td.td.jsonld │ │ ├── contentMedia-&-contentEncoding.td.jsonld │ │ ├── contentType.td.jsonld │ │ ├── defaults.td.jsonld │ │ ├── form-serialization.td.jsonld │ │ └── simple-context.td.jsonld │ ├── 10-response-and-additional-response │ │ ├── README.txt │ │ ├── additional-responses.td.jsonld │ │ └── simple-response.td.jsonld │ ├── 11-multilanguage │ │ ├── README.txt │ │ ├── multilanguage-title-description.td.jsonld │ │ ├── multilanguage.td.jsonld │ │ └── string-direction.td.jsonld │ ├── 12-uri-variables │ │ ├── README.txt │ │ ├── combined-uriVariables-href.td.jsonld │ │ ├── dynaic-uriVariables.td.jsonld │ │ └── uri-href-structure.td.jsonld │ ├── 13-semantic-annotations │ │ ├── README.txt │ │ ├── semantic.td.jsonld │ │ └── state-information-context-extension.td.jsonld │ ├── 14-non-standard │ │ ├── README.txt │ │ ├── additional-metadata.td.jsonld │ │ └── location-based-metadata.td.jsonld │ ├── 15-link-relation-type │ │ ├── README.txt │ │ ├── collection-rel.td.jsonld │ │ ├── controlledBy-rel.td.jsonld │ │ ├── item-rel.td.jsonld │ │ └── service-doc-rel.td.jsonld │ ├── 16-td-tm-relationships │ │ ├── README.txt │ │ ├── basic-td-from-tm.td.jsonld │ │ ├── composition-top-level-td-from-tm.td.jsonld │ │ ├── extend-and-import-td-from-tm.td.jsonld │ │ ├── extends-basic-td-from-tm.td.jsonld │ │ ├── import-definition-td-from-tm.td.jsonld │ │ ├── optional-interaction-td-from-tm.td.jsonld │ │ ├── overwrite-definitions-td-from-tm.td.jsonld │ │ ├── overwrite-optional-td-from-tm.td.jsonld │ │ ├── placeholder-td-from-tm.td.jsonld │ │ ├── relative-imports-td-from-tm.td.jsonld │ │ ├── submodel-led-td-from-tm.td.jsonld │ │ ├── submodel-ventilator-td-from-tm.td.jsonld │ │ └── versioning-td-from-tm.td.jsonld │ ├── 2-properties │ │ ├── README.txt │ │ ├── properties-serializations.td.jsonld │ │ ├── readOnly.td.jsonld │ │ └── writeOnly.td.jsonld │ ├── 3-actions │ │ ├── README.txt │ │ ├── action-serialization.td.jsonld │ │ └── response.td.jsonld │ ├── 4-events │ │ ├── README.txt │ │ └── event-serialization.td.jsonld │ ├── 5-protocols │ │ ├── CoAP-block-wise-no-parameters.td.jsonld │ │ ├── CoAP-block-wise-parameters.td.jsonld │ │ ├── CoAP-content-negotiation.td.jsonld │ │ ├── CoAP-hop-limit.td.jsonld │ │ ├── CoAP-observing-resources.td.jsonld │ │ ├── CoAP-simple-td-defaults.td.jsonld │ │ ├── CoAP-simple-td-no-defaults.td.jsonld │ │ ├── HTTP-readproperty.td.jsonld │ │ ├── HTTP-simple-td-defaults.td.jsonld │ │ ├── Modbus-multiple-operations-expanded.td.jsonld │ │ ├── Modbus-multiple-operations.td.jsonld │ │ ├── Modbus-single-coil.td.jsonld │ │ ├── README.txt │ │ ├── extended-forms-multiple-op.td.jsonld │ │ └── subprotocol-longpoll.td.jsonld │ ├── 6-security-schemas │ │ ├── OAuth2-scopes.td.jsonld │ │ ├── README.txt │ │ ├── apikey-in-body-simplified.td.jsonld │ │ ├── apikey-in-body.td.jsonld │ │ ├── apikey-security.td.jsonld │ │ ├── basic-security.td.jsonld │ │ ├── combo-apikey-security.td.jsonld │ │ ├── combo-security-def-allOf.td.jsonld │ │ ├── combo-security-def-oneOf.td.jsonld │ │ ├── multiple-security-def.td.jsonld │ │ ├── multiple-security-forms.td.jsonld │ │ └── noSec-security.td.jsonld │ ├── 7-complex-data-schemas │ │ ├── README.txt │ │ ├── data-schema-serialization.td.jsonld │ │ └── readOnly-&-writeOnly.td.jsonld │ ├── 8-meta-interactions │ │ ├── README.txt │ │ ├── readallproperties.td.jsonld │ │ ├── top-level-uriVariables.td.jsonld │ │ └── writeallproperties.td.jsonld │ └── 9-versioning │ │ ├── README.txt │ │ └── versioning.td.jsonld └── tm │ ├── 1-basic │ ├── README.txt │ ├── basic-on-off-tm.tm.jsonld │ └── basic-tm.tm.jsonld │ ├── 2-tm-versioning │ ├── README.txt │ └── versioning.tm.jsonld │ ├── 3-tm-extends-imports │ ├── README.txt │ ├── extend-and-import.tm.jsonld │ ├── extends-basic.tm.jsonld │ ├── import-existing-definition.tm.jsonld │ ├── overwrite-existing-definitions.tm.jsonld │ └── relative-imports.tm.jsonld │ ├── 4-tm-optional │ ├── README.txt │ ├── optional-interaction.tm.jsonld │ └── overwrite-optional-interactions.tm.jsonld │ ├── 5-tm-submodel │ ├── README.txt │ ├── basic-led-tm.tm.jsonld │ ├── basic-ventilation-tm.tm.jsonld │ └── submodel.tm.jsonld │ └── 6-placeholder │ ├── README.txt │ └── placeholder.tm.jsonld ├── images ├── playground-structure.drawio └── playground-structure.png ├── lerna.json ├── license.template.txt ├── package.json └── packages ├── assertions ├── .editorconfig ├── .npmignore ├── README.md ├── assertionCoverage.csv ├── assertionTests-td.js ├── assertionTests-tm.js ├── assertions-csv │ ├── README.md │ ├── assertions.csv │ ├── changelog.md │ ├── implemented.csv │ ├── manual-generation-inputs │ │ ├── MinimalThing.json │ │ ├── MinimalThingModel.json │ │ ├── README.md │ │ └── pre-implemented.csv │ ├── manual.csv │ ├── needsReview.csv │ ├── old.csv │ ├── oldManual.csv │ └── report.json ├── assertions-td │ ├── manual.csv │ ├── td-action-arrays.json │ ├── td-action-names_at-type.json │ ├── td-action-names_description.json │ ├── td-action-names_descriptions.json │ ├── td-action-names_title.json │ ├── td-action-names_titles.json │ ├── td-action-names_uriVariables.json │ ├── td-actions_existence.json │ ├── td-context-default-language.json │ ├── td-context-ns-td10-namespace.json │ ├── td-context-ns-thing-map-of-namespaces.json │ ├── td-context-ns-thing-optional.json │ ├── td-context.json │ ├── td-event-arrays.json │ ├── td-event-names_at-type.json │ ├── td-event-names_description.json │ ├── td-event-names_descriptions.json │ ├── td-event-names_title.json │ ├── td-event-names_titles.json │ ├── td-event-names_uriVariables.json │ ├── td-events_existence.json │ ├── td-integer-type.json │ ├── td-links.json │ ├── td-number-type.json │ ├── td-op-for-action.json │ ├── td-op-for-event.json │ ├── td-op-for-property.json │ ├── td-op-for-thing.json │ ├── td-privacy-distributed-ids.json │ ├── td-properties_existence.json │ ├── td-property-arrays.json │ ├── td-property-names_at-type.json │ ├── td-property-names_const.json │ ├── td-property-names_description.json │ ├── td-property-names_descriptions.json │ ├── td-property-names_enum.json │ ├── td-property-names_items.json │ ├── td-property-names_maxItems.json │ ├── td-property-names_maximum.json │ ├── td-property-names_minItems.json │ ├── td-property-names_minimum.json │ ├── td-property-names_oneOf.json │ ├── td-property-names_properties.json │ ├── td-property-names_readOnly.json │ ├── td-property-names_required.json │ ├── td-property-names_title.json │ ├── td-property-names_titles.json │ ├── td-property-names_type.json │ ├── td-property-names_unit.json │ ├── td-property-names_uriVariables.json │ ├── td-property-names_writeOnly.json │ ├── td-security-bearer-format-extensions_alg.json │ ├── td-security-bearer-format-extensions_format.json │ ├── td-security-body-name-json-pointer-array.json │ ├── td-security-body-name-json-pointer.json │ ├── td-security-combo-exclusive-oneof-or-alloff.json │ ├── td-security-in-query-over-uri.json │ ├── td-security-oauth2-client-flow.json │ ├── td-security-oauth2-code-flow.json │ ├── td-security-oauth2-device-flow.json │ ├── td-string-type.json │ ├── td-text-at-direction.json │ ├── td-title-description_descriptions.json │ ├── td-title-description_titles.json │ ├── td-version.json │ ├── td-vocab-additionalResponses--Form.json │ ├── td-vocab-alg--BearerSecurityScheme.json │ ├── td-vocab-allOf--ComboSecurityScheme.json │ ├── td-vocab-anchor--Link.json │ ├── td-vocab-at-type--DataSchema.json │ ├── td-vocab-at-type--InteractionAffordance.json │ ├── td-vocab-at-type--SecurityScheme.json │ ├── td-vocab-at-type--Thing.json │ ├── td-vocab-authorization--BearerSecurityScheme.json │ ├── td-vocab-authorization--OAuth2SecurityScheme.json │ ├── td-vocab-base--Thing.json │ ├── td-vocab-cancellation--EventAffordance.json │ ├── td-vocab-const--DataSchema.json │ ├── td-vocab-contentCoding.json │ ├── td-vocab-contentEncoding--StringSchema.json │ ├── td-vocab-contentMediaType--StringSchema.json │ ├── td-vocab-contentType--AdditionalExpectedResponse.json │ ├── td-vocab-contentType-Form.json │ ├── td-vocab-created--Thing.json │ ├── td-vocab-data--EventAffordance.json │ ├── td-vocab-dataResponse--EventAffordance.json │ ├── td-vocab-default--DataSchema.json │ ├── td-vocab-description--DataSchema.json │ ├── td-vocab-description--InteractionAffordance.json │ ├── td-vocab-description--SecurityScheme.json │ ├── td-vocab-description--Thing.json │ ├── td-vocab-descriptions--DataSchema.json │ ├── td-vocab-descriptions--InteractionAffordance.json │ ├── td-vocab-descriptions--SecurityScheme.json │ ├── td-vocab-descriptions--Thing.json │ ├── td-vocab-enum--DataSchema.json │ ├── td-vocab-exclusiveMaximum--IntegerSchema.json │ ├── td-vocab-exclusiveMaximum--NumberSchema.json │ ├── td-vocab-exclusiveMinimum--IntegerSchema.json │ ├── td-vocab-exclusiveMinimum--NumberSchema.json │ ├── td-vocab-flow--OAuth2SecurityScheme.json │ ├── td-vocab-format--BearerSecurityScheme.json │ ├── td-vocab-format--DataSchema.json │ ├── td-vocab-forms--InteractionAffordance.json │ ├── td-vocab-forms--Thing.json │ ├── td-vocab-hreflang--Link.json │ ├── td-vocab-idempotent--ActionAffordance.json │ ├── td-vocab-identity--PSKSecurityScheme.json │ ├── td-vocab-in--APIKeySecurityScheme.json │ ├── td-vocab-in--BasicSecurityScheme.json │ ├── td-vocab-in--BearerSecurityScheme.json │ ├── td-vocab-in--DigestSecurityScheme.json │ ├── td-vocab-input--ActionAffordance.json │ ├── td-vocab-items--ArraySchema.json │ ├── td-vocab-maxItems--ArraySchema.json │ ├── td-vocab-maxLength--StringSchema.json │ ├── td-vocab-maximum--IntegerSchema.json │ ├── td-vocab-maximum--NumberSchema.json │ ├── td-vocab-minItems--ArraySchema.json │ ├── td-vocab-minLength--StringSchema.json │ ├── td-vocab-minimum--IntegerSchema.json │ ├── td-vocab-minimum--NumberSchema.json │ ├── td-vocab-model--VersionInfo.json │ ├── td-vocab-modified--Thing.json │ ├── td-vocab-multipleOf--IntegerSchema.json │ ├── td-vocab-multipleOf--NumberSchema.json │ ├── td-vocab-name--APIKeySecurityScheme.json │ ├── td-vocab-name--BasicSecurityScheme.json │ ├── td-vocab-name--BearerSecurityScheme.json │ ├── td-vocab-name--DigestSecurityScheme.json │ ├── td-vocab-observable--PropertyAffordance.json │ ├── td-vocab-oneOf--ComboSecurityScheme.json │ ├── td-vocab-oneOf--DataSchema.json │ ├── td-vocab-op--Form_cancelaction.json │ ├── td-vocab-op--Form_invokeaction.json │ ├── td-vocab-op--Form_observeallproperties.json │ ├── td-vocab-op--Form_observeproperty.json │ ├── td-vocab-op--Form_queryaction.json │ ├── td-vocab-op--Form_queryallactions.json │ ├── td-vocab-op--Form_readallproperties.json │ ├── td-vocab-op--Form_readmultipleproperties.json │ ├── td-vocab-op--Form_readproperty.json │ ├── td-vocab-op--Form_subscribeallevents.json │ ├── td-vocab-op--Form_subscribeevent.json │ ├── td-vocab-op--Form_unobserveallproperties.json │ ├── td-vocab-op--Form_unobserveproperty.json │ ├── td-vocab-op--Form_unsubscribeallevents.json │ ├── td-vocab-op--Form_unsubscribeevent.json │ ├── td-vocab-op--Form_writeallproperties.json │ ├── td-vocab-op--Form_writemultipleproperties.json │ ├── td-vocab-op--Form_writeproperty.json │ ├── td-vocab-output--ActionAffordance.json │ ├── td-vocab-pattern--StringSchema.json │ ├── td-vocab-profile--Thing.json │ ├── td-vocab-properties--ObjectSchema.json │ ├── td-vocab-proxy--SecurityScheme.json │ ├── td-vocab-qop--DigestSecurityScheme.json │ ├── td-vocab-readOnly--DataSchema.json │ ├── td-vocab-refresh--OAuth2SecurityScheme.json │ ├── td-vocab-rel--Link.json │ ├── td-vocab-required--ObjectSchema.json │ ├── td-vocab-response--Form.json │ ├── td-vocab-safe--ActionAffordance.json │ ├── td-vocab-schema--AdditionalExpectedResponse.json │ ├── td-vocab-schemaDefinitions--Thing.json │ ├── td-vocab-scheme--SecurityScheme_apikey.json │ ├── td-vocab-scheme--SecurityScheme_auto.json │ ├── td-vocab-scheme--SecurityScheme_basic.json │ ├── td-vocab-scheme--SecurityScheme_bearer.json │ ├── td-vocab-scheme--SecurityScheme_digest.json │ ├── td-vocab-scheme--SecurityScheme_nosec.json │ ├── td-vocab-scheme--SecurityScheme_oauth2.json │ ├── td-vocab-scheme--SecurityScheme_psk.json │ ├── td-vocab-scopes--Form.json │ ├── td-vocab-scopes--OAuth2SecurityScheme.json │ ├── td-vocab-security--Form.json │ ├── td-vocab-sizes--Link.json │ ├── td-vocab-subprotocol--Form.json │ ├── td-vocab-subscription--EventAffordance.json │ ├── td-vocab-success--AdditionalExpectedResponse.json │ ├── td-vocab-support--Thing.json │ ├── td-vocab-synchronous--ActionAffordance.json │ ├── td-vocab-title--DataSchema.json │ ├── td-vocab-title--InteractionAffordance.json │ ├── td-vocab-titles--DataSchema.json │ ├── td-vocab-titles--InteractionAffordance.json │ ├── td-vocab-titles--Thing.json │ ├── td-vocab-token--OAuth2SecurityScheme.json │ ├── td-vocab-type--DataSchema_array.json │ ├── td-vocab-type--DataSchema_boolean.json │ ├── td-vocab-type--DataSchema_integer.json │ ├── td-vocab-type--DataSchema_null.json │ ├── td-vocab-type--DataSchema_number.json │ ├── td-vocab-type--DataSchema_object.json │ ├── td-vocab-type--DataSchema_string.json │ ├── td-vocab-type--Link.json │ ├── td-vocab-unit--DataSchema.json │ ├── td-vocab-uriVariables--InteractionAffordance.json │ ├── td-vocab-uriVariables--Thing.json │ ├── td-vocab-writeOnly--DataSchema.json │ └── tdAssertionList.json ├── assertions-tm │ ├── manual.csv │ ├── tm-compose-instanceName.json │ ├── tm-compose-submodel.json │ ├── tm-extend.json │ ├── tm-identification.json │ ├── tm-placeholder.json │ ├── tm-protocol-security-restriction.json │ ├── tm-tmOptional.json │ ├── tm-tmRef1.json │ ├── tm-versioning-2.json │ └── tmAssertionList.json ├── assertions.xlsx ├── checkCoverage.js ├── countCoverage.sh ├── eslint-results.sarif ├── example-scripts │ ├── manualCSV_noLogging.js │ ├── multipleInput.js │ ├── readFile_ConsoleLogging.js │ ├── simple.js │ └── simpleTM.js ├── generate-changelog.js ├── generate-manual-csv.js ├── generate-manual-csv.sh ├── index.js ├── mergeResults.js ├── package-lock.json ├── package.json ├── tests │ └── index-test.js ├── update-list.js └── util.js ├── cli ├── .editorconfig ├── README.md ├── eslint-results.sarif ├── index.js ├── package-lock.json ├── package.json └── tests │ └── index-test.js ├── core ├── .editorconfig ├── .npmignore ├── README.md ├── eslint-results.sarif ├── examples │ ├── scripts │ │ ├── failingTd.js │ │ ├── multipleFiles.js │ │ ├── readFile.js │ │ ├── simple-tm-usage.js │ │ └── simple.js │ ├── tds │ │ ├── invalid │ │ │ ├── camelCase.json │ │ │ ├── duplicateEnum.json │ │ │ ├── duplicatePropertyAffordanceNames.json │ │ │ ├── duplicateSecurityDefinitions.json │ │ │ ├── emptyEnum.json │ │ │ ├── emptyForm.json │ │ │ ├── emptyOpArray.json │ │ │ ├── emptySecDef.json │ │ │ ├── emptySecurity.json │ │ │ ├── invalidDataType.json │ │ │ ├── invalidInteractionElement.json │ │ │ ├── invalidOp.json │ │ │ ├── invalidSecuMatch.json │ │ │ ├── invalidSecuScheme.json │ │ │ ├── multipleRelType.json │ │ │ ├── noContext.json │ │ │ ├── noForm1.json │ │ │ ├── noForm2.json │ │ │ ├── noForm3.json │ │ │ ├── noHref.json │ │ │ ├── noTitle.json │ │ │ ├── usingTM.json │ │ │ └── versionInstanceMissing.json │ │ ├── notValidYet │ │ │ ├── apikeyUriVariable.json │ │ │ ├── bodyApiKey.json │ │ │ ├── comboOneOf.json │ │ │ ├── oauth2-client.json │ │ │ ├── oauth2-device.json │ │ │ └── uriSecurity.json │ │ ├── valid │ │ │ ├── InteractionSecurityThing.json │ │ │ ├── JsonLdThing.json │ │ │ ├── MetadataThing.json │ │ │ ├── MinimalThing.json │ │ │ ├── actionResponse.json │ │ │ ├── additionalResponses.json │ │ │ ├── apikeySec.json │ │ │ ├── baseUri.json │ │ │ ├── bearerExtension.json │ │ │ ├── bearerSec.json │ │ │ ├── cancSubData.json │ │ │ ├── constOneOf.json │ │ │ ├── contentTypeComplex.json │ │ │ ├── createdModified.json │ │ │ ├── dataSchema.json │ │ │ ├── digestSec.json │ │ │ ├── formOpArray.json │ │ │ ├── formOpArrayWithDefaults.json │ │ │ ├── fromTM.json │ │ │ ├── inputActionThing.json │ │ │ ├── languageDirection.json │ │ │ ├── linksThing.json │ │ │ ├── mqtt-experimental.json │ │ │ ├── multiLanguage.json │ │ │ ├── multiProperties.json │ │ │ ├── noIdThing.json │ │ │ ├── noSec.json │ │ │ ├── profile.json │ │ │ ├── pskSec.json │ │ │ ├── publisher.json │ │ │ ├── readWriteAllProperties.json │ │ │ ├── rootForms.json │ │ │ ├── safeIdempotent.json │ │ │ ├── scopesForm_oauth2.json │ │ │ ├── semanticTD.json │ │ │ ├── simple.json │ │ │ ├── simpleWithDefaults.json │ │ │ ├── specExampleFull.json │ │ │ ├── support.json │ │ │ ├── uriVariablesAffordances.json │ │ │ ├── uriVariablesThing.json │ │ │ ├── usingRecursiveTM.json │ │ │ ├── usingTM.json │ │ │ └── versionThing.json │ │ └── warning │ │ │ ├── additionalResponsesEmptyResp.json │ │ │ ├── arrayNoItems.json │ │ │ ├── enumConst.json │ │ │ ├── objectNoProperties.json │ │ │ ├── unavailableDirectTm.json │ │ │ └── unavailableRecursiveTm.json │ └── tms │ │ ├── invalid │ │ ├── absent_context.json │ │ ├── absent_tm.json │ │ ├── no_curly_bracket.json │ │ ├── optionalWrongLocation.json │ │ ├── single_curly_bracket.json │ │ └── unavailableParent.json │ │ └── valid │ │ ├── affordances.json │ │ ├── extend.json │ │ ├── links.json │ │ ├── missingHref.json │ │ ├── missing_title.json │ │ ├── mqtt.json │ │ ├── optional.json │ │ ├── overwrite.json │ │ ├── placeholder.json │ │ ├── property.json │ │ ├── ref.json │ │ ├── security.json │ │ └── version.json ├── index.js ├── jest.config.js ├── package-lock.json ├── package.json ├── shared.js ├── td-schema-full.json ├── td-schema.json ├── tests │ ├── examples-invalid.test.js │ ├── examples-valid.test.js │ ├── examples-warning.test.js │ ├── index.test.js │ └── typo │ │ ├── typoCheckWithTypos.json │ │ └── typoCheckWithoutTypos.json └── tm-schema.json ├── defaults ├── .editorconfig ├── .npmignore ├── README.md ├── eslint-results.sarif ├── examples │ ├── td-with-defaults.json │ └── td-without-defaults.json ├── index.js ├── package-lock.json ├── package.json ├── src │ ├── definitions.js │ ├── shared.js │ └── util.js └── tests │ ├── add.test.js │ ├── examples.test.js │ └── remove.test.js └── web ├── README.md ├── external-scripts └── generate-paths.js ├── netlify.toml ├── package-lock.json ├── package.json ├── playwright.config.js ├── server └── server.js ├── src ├── assets │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ └── img │ │ ├── angle-down-solid.svg │ │ ├── eye-slash-solid.svg │ │ └── eye-solid.svg ├── examples-paths │ └── examples-paths.json ├── scripts │ ├── aas.js │ ├── async-api.js │ ├── consent-banner.js │ ├── console.js │ ├── defaults.js │ ├── editor.js │ ├── examples-menu.js │ ├── json-yaml.js │ ├── jsonld-vis.js │ ├── main.js │ ├── monochrome-theme.js │ ├── open-api.js │ ├── save-menu.js │ ├── settings-menu.js │ ├── util.js │ ├── validation.js │ ├── vega-vis.js │ └── visualize.js ├── styles │ ├── _console.scss │ ├── _control-panel.scss │ ├── _editor.scss │ ├── _examples-menu.scss │ ├── _json-yaml-warning.scss │ ├── _jsonld-vis.scss │ ├── _save-menu.scss │ ├── _settings-menu.scss │ └── styles.scss └── template.html ├── tests └── test.spec.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/assertionscsv-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.github/workflows/assertionscsv-update.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.github/workflows/ci-cd.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.github/workflows/eslint.yml -------------------------------------------------------------------------------- /.github/workflows/visual-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.github/workflows/visual-ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/templates/css.lict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.vscode/templates/css.lict -------------------------------------------------------------------------------- /.vscode/templates/html.lict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.vscode/templates/html.lict -------------------------------------------------------------------------------- /.vscode/templates/js.lict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.vscode/templates/js.lict -------------------------------------------------------------------------------- /.vscode/templates/scss.lict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.vscode/templates/scss.lict -------------------------------------------------------------------------------- /.vscode/templates/sh.lict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/.vscode/templates/sh.lict -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/td/1-simple-default/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/1-simple-default/README.txt -------------------------------------------------------------------------------- /examples/td/1-simple-default/basic-td.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/1-simple-default/basic-td.td.jsonld -------------------------------------------------------------------------------- /examples/td/1-simple-default/contentMedia-&-contentEncoding.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/1-simple-default/contentMedia-&-contentEncoding.td.jsonld -------------------------------------------------------------------------------- /examples/td/1-simple-default/contentType.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/1-simple-default/contentType.td.jsonld -------------------------------------------------------------------------------- /examples/td/1-simple-default/defaults.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/1-simple-default/defaults.td.jsonld -------------------------------------------------------------------------------- /examples/td/1-simple-default/form-serialization.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/1-simple-default/form-serialization.td.jsonld -------------------------------------------------------------------------------- /examples/td/1-simple-default/simple-context.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/1-simple-default/simple-context.td.jsonld -------------------------------------------------------------------------------- /examples/td/10-response-and-additional-response/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/10-response-and-additional-response/README.txt -------------------------------------------------------------------------------- /examples/td/10-response-and-additional-response/additional-responses.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/10-response-and-additional-response/additional-responses.td.jsonld -------------------------------------------------------------------------------- /examples/td/10-response-and-additional-response/simple-response.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/10-response-and-additional-response/simple-response.td.jsonld -------------------------------------------------------------------------------- /examples/td/11-multilanguage/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/11-multilanguage/README.txt -------------------------------------------------------------------------------- /examples/td/11-multilanguage/multilanguage-title-description.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/11-multilanguage/multilanguage-title-description.td.jsonld -------------------------------------------------------------------------------- /examples/td/11-multilanguage/multilanguage.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/11-multilanguage/multilanguage.td.jsonld -------------------------------------------------------------------------------- /examples/td/11-multilanguage/string-direction.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/11-multilanguage/string-direction.td.jsonld -------------------------------------------------------------------------------- /examples/td/12-uri-variables/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/12-uri-variables/README.txt -------------------------------------------------------------------------------- /examples/td/12-uri-variables/combined-uriVariables-href.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/12-uri-variables/combined-uriVariables-href.td.jsonld -------------------------------------------------------------------------------- /examples/td/12-uri-variables/dynaic-uriVariables.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/12-uri-variables/dynaic-uriVariables.td.jsonld -------------------------------------------------------------------------------- /examples/td/12-uri-variables/uri-href-structure.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/12-uri-variables/uri-href-structure.td.jsonld -------------------------------------------------------------------------------- /examples/td/13-semantic-annotations/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/13-semantic-annotations/README.txt -------------------------------------------------------------------------------- /examples/td/13-semantic-annotations/semantic.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/13-semantic-annotations/semantic.td.jsonld -------------------------------------------------------------------------------- /examples/td/13-semantic-annotations/state-information-context-extension.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/13-semantic-annotations/state-information-context-extension.td.jsonld -------------------------------------------------------------------------------- /examples/td/14-non-standard/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/14-non-standard/README.txt -------------------------------------------------------------------------------- /examples/td/14-non-standard/additional-metadata.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/14-non-standard/additional-metadata.td.jsonld -------------------------------------------------------------------------------- /examples/td/14-non-standard/location-based-metadata.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/14-non-standard/location-based-metadata.td.jsonld -------------------------------------------------------------------------------- /examples/td/15-link-relation-type/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/15-link-relation-type/README.txt -------------------------------------------------------------------------------- /examples/td/15-link-relation-type/collection-rel.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/15-link-relation-type/collection-rel.td.jsonld -------------------------------------------------------------------------------- /examples/td/15-link-relation-type/controlledBy-rel.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/15-link-relation-type/controlledBy-rel.td.jsonld -------------------------------------------------------------------------------- /examples/td/15-link-relation-type/item-rel.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/15-link-relation-type/item-rel.td.jsonld -------------------------------------------------------------------------------- /examples/td/15-link-relation-type/service-doc-rel.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/15-link-relation-type/service-doc-rel.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/README.txt -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/basic-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/basic-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/composition-top-level-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/composition-top-level-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/extend-and-import-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/extend-and-import-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/extends-basic-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/extends-basic-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/import-definition-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/import-definition-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/optional-interaction-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/optional-interaction-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/overwrite-definitions-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/overwrite-definitions-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/overwrite-optional-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/overwrite-optional-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/placeholder-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/placeholder-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/relative-imports-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/relative-imports-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/submodel-led-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/submodel-led-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/submodel-ventilator-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/submodel-ventilator-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/16-td-tm-relationships/versioning-td-from-tm.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/16-td-tm-relationships/versioning-td-from-tm.td.jsonld -------------------------------------------------------------------------------- /examples/td/2-properties/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/2-properties/README.txt -------------------------------------------------------------------------------- /examples/td/2-properties/properties-serializations.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/2-properties/properties-serializations.td.jsonld -------------------------------------------------------------------------------- /examples/td/2-properties/readOnly.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/2-properties/readOnly.td.jsonld -------------------------------------------------------------------------------- /examples/td/2-properties/writeOnly.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/2-properties/writeOnly.td.jsonld -------------------------------------------------------------------------------- /examples/td/3-actions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/3-actions/README.txt -------------------------------------------------------------------------------- /examples/td/3-actions/action-serialization.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/3-actions/action-serialization.td.jsonld -------------------------------------------------------------------------------- /examples/td/3-actions/response.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/3-actions/response.td.jsonld -------------------------------------------------------------------------------- /examples/td/4-events/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/4-events/README.txt -------------------------------------------------------------------------------- /examples/td/4-events/event-serialization.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/4-events/event-serialization.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/CoAP-block-wise-no-parameters.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/CoAP-block-wise-no-parameters.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/CoAP-block-wise-parameters.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/CoAP-block-wise-parameters.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/CoAP-content-negotiation.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/CoAP-content-negotiation.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/CoAP-hop-limit.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/CoAP-hop-limit.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/CoAP-observing-resources.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/CoAP-observing-resources.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/CoAP-simple-td-defaults.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/CoAP-simple-td-defaults.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/CoAP-simple-td-no-defaults.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/CoAP-simple-td-no-defaults.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/HTTP-readproperty.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/HTTP-readproperty.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/HTTP-simple-td-defaults.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/HTTP-simple-td-defaults.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/Modbus-multiple-operations-expanded.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/Modbus-multiple-operations-expanded.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/Modbus-multiple-operations.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/Modbus-multiple-operations.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/Modbus-single-coil.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/Modbus-single-coil.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/README.txt -------------------------------------------------------------------------------- /examples/td/5-protocols/extended-forms-multiple-op.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/extended-forms-multiple-op.td.jsonld -------------------------------------------------------------------------------- /examples/td/5-protocols/subprotocol-longpoll.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/5-protocols/subprotocol-longpoll.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/OAuth2-scopes.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/OAuth2-scopes.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/README.txt -------------------------------------------------------------------------------- /examples/td/6-security-schemas/apikey-in-body-simplified.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/apikey-in-body-simplified.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/apikey-in-body.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/apikey-in-body.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/apikey-security.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/apikey-security.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/basic-security.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/basic-security.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/combo-apikey-security.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/combo-apikey-security.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/combo-security-def-allOf.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/combo-security-def-allOf.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/combo-security-def-oneOf.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/combo-security-def-oneOf.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/multiple-security-def.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/multiple-security-def.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/multiple-security-forms.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/multiple-security-forms.td.jsonld -------------------------------------------------------------------------------- /examples/td/6-security-schemas/noSec-security.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/6-security-schemas/noSec-security.td.jsonld -------------------------------------------------------------------------------- /examples/td/7-complex-data-schemas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/7-complex-data-schemas/README.txt -------------------------------------------------------------------------------- /examples/td/7-complex-data-schemas/data-schema-serialization.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/7-complex-data-schemas/data-schema-serialization.td.jsonld -------------------------------------------------------------------------------- /examples/td/7-complex-data-schemas/readOnly-&-writeOnly.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/7-complex-data-schemas/readOnly-&-writeOnly.td.jsonld -------------------------------------------------------------------------------- /examples/td/8-meta-interactions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/8-meta-interactions/README.txt -------------------------------------------------------------------------------- /examples/td/8-meta-interactions/readallproperties.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/8-meta-interactions/readallproperties.td.jsonld -------------------------------------------------------------------------------- /examples/td/8-meta-interactions/top-level-uriVariables.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/8-meta-interactions/top-level-uriVariables.td.jsonld -------------------------------------------------------------------------------- /examples/td/8-meta-interactions/writeallproperties.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/8-meta-interactions/writeallproperties.td.jsonld -------------------------------------------------------------------------------- /examples/td/9-versioning/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/9-versioning/README.txt -------------------------------------------------------------------------------- /examples/td/9-versioning/versioning.td.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/td/9-versioning/versioning.td.jsonld -------------------------------------------------------------------------------- /examples/tm/1-basic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/1-basic/README.txt -------------------------------------------------------------------------------- /examples/tm/1-basic/basic-on-off-tm.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/1-basic/basic-on-off-tm.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/1-basic/basic-tm.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/1-basic/basic-tm.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/2-tm-versioning/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/2-tm-versioning/README.txt -------------------------------------------------------------------------------- /examples/tm/2-tm-versioning/versioning.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/2-tm-versioning/versioning.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/3-tm-extends-imports/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/3-tm-extends-imports/README.txt -------------------------------------------------------------------------------- /examples/tm/3-tm-extends-imports/extend-and-import.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/3-tm-extends-imports/extend-and-import.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/3-tm-extends-imports/extends-basic.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/3-tm-extends-imports/extends-basic.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/3-tm-extends-imports/import-existing-definition.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/3-tm-extends-imports/import-existing-definition.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/3-tm-extends-imports/overwrite-existing-definitions.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/3-tm-extends-imports/overwrite-existing-definitions.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/3-tm-extends-imports/relative-imports.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/3-tm-extends-imports/relative-imports.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/4-tm-optional/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/4-tm-optional/README.txt -------------------------------------------------------------------------------- /examples/tm/4-tm-optional/optional-interaction.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/4-tm-optional/optional-interaction.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/4-tm-optional/overwrite-optional-interactions.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/4-tm-optional/overwrite-optional-interactions.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/5-tm-submodel/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/5-tm-submodel/README.txt -------------------------------------------------------------------------------- /examples/tm/5-tm-submodel/basic-led-tm.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/5-tm-submodel/basic-led-tm.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/5-tm-submodel/basic-ventilation-tm.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/5-tm-submodel/basic-ventilation-tm.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/5-tm-submodel/submodel.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/5-tm-submodel/submodel.tm.jsonld -------------------------------------------------------------------------------- /examples/tm/6-placeholder/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/6-placeholder/README.txt -------------------------------------------------------------------------------- /examples/tm/6-placeholder/placeholder.tm.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/examples/tm/6-placeholder/placeholder.tm.jsonld -------------------------------------------------------------------------------- /images/playground-structure.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/images/playground-structure.drawio -------------------------------------------------------------------------------- /images/playground-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/images/playground-structure.png -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/lerna.json -------------------------------------------------------------------------------- /license.template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/license.template.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/package.json -------------------------------------------------------------------------------- /packages/assertions/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/.editorconfig -------------------------------------------------------------------------------- /packages/assertions/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/.npmignore -------------------------------------------------------------------------------- /packages/assertions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/README.md -------------------------------------------------------------------------------- /packages/assertions/assertionCoverage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertionCoverage.csv -------------------------------------------------------------------------------- /packages/assertions/assertionTests-td.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertionTests-td.js -------------------------------------------------------------------------------- /packages/assertions/assertionTests-tm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertionTests-tm.js -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/README.md -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/assertions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/assertions.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/changelog.md -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/implemented.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/implemented.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/manual-generation-inputs/MinimalThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/manual-generation-inputs/MinimalThing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/manual-generation-inputs/MinimalThingModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/manual-generation-inputs/MinimalThingModel.json -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/manual-generation-inputs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/manual-generation-inputs/README.md -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/manual-generation-inputs/pre-implemented.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/manual-generation-inputs/pre-implemented.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/manual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/manual.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/needsReview.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/needsReview.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/old.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/old.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/oldManual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/oldManual.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-csv/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-csv/report.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/manual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/manual.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-action-arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-action-arrays.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-action-names_at-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-action-names_at-type.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-action-names_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-action-names_description.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-action-names_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-action-names_descriptions.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-action-names_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-action-names_title.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-action-names_titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-action-names_titles.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-action-names_uriVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-action-names_uriVariables.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-actions_existence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-actions_existence.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-context-default-language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-context-default-language.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-context-ns-td10-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-context-ns-td10-namespace.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-context-ns-thing-map-of-namespaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-context-ns-thing-map-of-namespaces.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-context-ns-thing-optional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-context-ns-thing-optional.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-context.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-event-arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-event-arrays.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-event-names_at-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-event-names_at-type.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-event-names_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-event-names_description.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-event-names_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-event-names_descriptions.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-event-names_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-event-names_title.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-event-names_titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-event-names_titles.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-event-names_uriVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-event-names_uriVariables.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-events_existence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-events_existence.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-integer-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-integer-type.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-links.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-number-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-number-type.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-op-for-action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-op-for-action.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-op-for-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-op-for-event.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-op-for-property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-op-for-property.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-op-for-thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-op-for-thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-privacy-distributed-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-privacy-distributed-ids.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-properties_existence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-properties_existence.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-arrays.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_at-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_at-type.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_const.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_description.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_descriptions.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_enum.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_items.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_maxItems.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_maximum.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_minItems.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_minimum.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_oneOf.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_properties.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_readOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_readOnly.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_required.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_title.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_titles.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_type.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_unit.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_uriVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_uriVariables.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-property-names_writeOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-property-names_writeOnly.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-bearer-format-extensions_alg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-bearer-format-extensions_alg.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-bearer-format-extensions_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-bearer-format-extensions_format.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-body-name-json-pointer-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-body-name-json-pointer-array.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-body-name-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-body-name-json-pointer.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-combo-exclusive-oneof-or-alloff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-combo-exclusive-oneof-or-alloff.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-in-query-over-uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-in-query-over-uri.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-oauth2-client-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-oauth2-client-flow.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-oauth2-code-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-oauth2-code-flow.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-security-oauth2-device-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-security-oauth2-device-flow.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-string-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-string-type.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-text-at-direction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-text-at-direction.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-title-description_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-title-description_descriptions.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-title-description_titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-title-description_titles.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-version.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-additionalResponses--Form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-additionalResponses--Form.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-alg--BearerSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-alg--BearerSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-allOf--ComboSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-allOf--ComboSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-anchor--Link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-anchor--Link.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-at-type--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-at-type--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-at-type--InteractionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-at-type--InteractionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-at-type--SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-at-type--SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-at-type--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-at-type--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-authorization--BearerSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-authorization--BearerSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-authorization--OAuth2SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-authorization--OAuth2SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-base--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-base--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-cancellation--EventAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-cancellation--EventAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-const--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-const--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-contentCoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-contentCoding.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-contentEncoding--StringSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-contentEncoding--StringSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-contentMediaType--StringSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-contentMediaType--StringSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-contentType--AdditionalExpectedResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-contentType--AdditionalExpectedResponse.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-contentType-Form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-contentType-Form.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-created--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-created--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-data--EventAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-data--EventAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-dataResponse--EventAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-dataResponse--EventAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-default--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-default--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-description--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-description--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-description--InteractionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-description--InteractionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-description--SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-description--SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-description--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-description--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-descriptions--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-descriptions--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-descriptions--InteractionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-descriptions--InteractionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-descriptions--SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-descriptions--SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-descriptions--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-descriptions--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-enum--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-enum--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-exclusiveMaximum--IntegerSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-exclusiveMaximum--IntegerSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-exclusiveMaximum--NumberSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-exclusiveMaximum--NumberSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-exclusiveMinimum--IntegerSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-exclusiveMinimum--IntegerSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-exclusiveMinimum--NumberSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-exclusiveMinimum--NumberSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-flow--OAuth2SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-flow--OAuth2SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-format--BearerSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-format--BearerSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-format--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-format--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-forms--InteractionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-forms--InteractionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-forms--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-forms--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-hreflang--Link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-hreflang--Link.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-idempotent--ActionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-idempotent--ActionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-identity--PSKSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-identity--PSKSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-in--APIKeySecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-in--APIKeySecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-in--BasicSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-in--BasicSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-in--BearerSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-in--BearerSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-in--DigestSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-in--DigestSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-input--ActionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-input--ActionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-items--ArraySchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-items--ArraySchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-maxItems--ArraySchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-maxItems--ArraySchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-maxLength--StringSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-maxLength--StringSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-maximum--IntegerSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-maximum--IntegerSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-maximum--NumberSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-maximum--NumberSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-minItems--ArraySchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-minItems--ArraySchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-minLength--StringSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-minLength--StringSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-minimum--IntegerSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-minimum--IntegerSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-minimum--NumberSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-minimum--NumberSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-model--VersionInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-model--VersionInfo.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-modified--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-modified--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-multipleOf--IntegerSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-multipleOf--IntegerSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-multipleOf--NumberSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-multipleOf--NumberSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-name--APIKeySecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-name--APIKeySecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-name--BasicSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-name--BasicSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-name--BearerSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-name--BearerSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-name--DigestSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-name--DigestSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-observable--PropertyAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-observable--PropertyAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-oneOf--ComboSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-oneOf--ComboSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-oneOf--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-oneOf--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_cancelaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_cancelaction.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_invokeaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_invokeaction.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_observeallproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_observeallproperties.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_observeproperty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_observeproperty.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_queryaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_queryaction.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_queryallactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_queryallactions.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_readallproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_readallproperties.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_readmultipleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_readmultipleproperties.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_readproperty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_readproperty.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_subscribeallevents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_subscribeallevents.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_subscribeevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_subscribeevent.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_unobserveallproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_unobserveallproperties.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_unobserveproperty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_unobserveproperty.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_unsubscribeallevents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_unsubscribeallevents.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_unsubscribeevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_unsubscribeevent.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_writeallproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_writeallproperties.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_writemultipleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_writemultipleproperties.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-op--Form_writeproperty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-op--Form_writeproperty.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-output--ActionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-output--ActionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-pattern--StringSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-pattern--StringSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-profile--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-profile--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-properties--ObjectSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-properties--ObjectSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-proxy--SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-proxy--SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-qop--DigestSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-qop--DigestSecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-readOnly--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-readOnly--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-refresh--OAuth2SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-refresh--OAuth2SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-rel--Link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-rel--Link.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-required--ObjectSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-required--ObjectSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-response--Form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-response--Form.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-safe--ActionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-safe--ActionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-schema--AdditionalExpectedResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-schema--AdditionalExpectedResponse.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-schemaDefinitions--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-schemaDefinitions--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_apikey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_apikey.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_auto.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_basic.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_bearer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_bearer.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_digest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_digest.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_nosec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_nosec.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_oauth2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_oauth2.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_psk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scheme--SecurityScheme_psk.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scopes--Form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scopes--Form.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-scopes--OAuth2SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-scopes--OAuth2SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-security--Form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-security--Form.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-sizes--Link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-sizes--Link.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-subprotocol--Form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-subprotocol--Form.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-subscription--EventAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-subscription--EventAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-success--AdditionalExpectedResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-success--AdditionalExpectedResponse.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-support--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-support--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-synchronous--ActionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-synchronous--ActionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-title--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-title--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-title--InteractionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-title--InteractionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-titles--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-titles--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-titles--InteractionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-titles--InteractionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-titles--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-titles--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-token--OAuth2SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-token--OAuth2SecurityScheme.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-type--DataSchema_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-type--DataSchema_array.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-type--DataSchema_boolean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-type--DataSchema_boolean.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-type--DataSchema_integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-type--DataSchema_integer.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-type--DataSchema_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-type--DataSchema_null.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-type--DataSchema_number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-type--DataSchema_number.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-type--DataSchema_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-type--DataSchema_object.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-type--DataSchema_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-type--DataSchema_string.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-type--Link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-type--Link.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-unit--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-unit--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-uriVariables--InteractionAffordance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-uriVariables--InteractionAffordance.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-uriVariables--Thing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-uriVariables--Thing.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/td-vocab-writeOnly--DataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/td-vocab-writeOnly--DataSchema.json -------------------------------------------------------------------------------- /packages/assertions/assertions-td/tdAssertionList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-td/tdAssertionList.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/manual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/manual.csv -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-compose-instanceName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-compose-instanceName.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-compose-submodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-compose-submodel.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-extend.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-identification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-identification.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-placeholder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-placeholder.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-protocol-security-restriction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-protocol-security-restriction.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-tmOptional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-tmOptional.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-tmRef1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-tmRef1.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tm-versioning-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tm-versioning-2.json -------------------------------------------------------------------------------- /packages/assertions/assertions-tm/tmAssertionList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions-tm/tmAssertionList.json -------------------------------------------------------------------------------- /packages/assertions/assertions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/assertions.xlsx -------------------------------------------------------------------------------- /packages/assertions/checkCoverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/checkCoverage.js -------------------------------------------------------------------------------- /packages/assertions/countCoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/countCoverage.sh -------------------------------------------------------------------------------- /packages/assertions/eslint-results.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/eslint-results.sarif -------------------------------------------------------------------------------- /packages/assertions/example-scripts/manualCSV_noLogging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/example-scripts/manualCSV_noLogging.js -------------------------------------------------------------------------------- /packages/assertions/example-scripts/multipleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/example-scripts/multipleInput.js -------------------------------------------------------------------------------- /packages/assertions/example-scripts/readFile_ConsoleLogging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/example-scripts/readFile_ConsoleLogging.js -------------------------------------------------------------------------------- /packages/assertions/example-scripts/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/example-scripts/simple.js -------------------------------------------------------------------------------- /packages/assertions/example-scripts/simpleTM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/example-scripts/simpleTM.js -------------------------------------------------------------------------------- /packages/assertions/generate-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/generate-changelog.js -------------------------------------------------------------------------------- /packages/assertions/generate-manual-csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/generate-manual-csv.js -------------------------------------------------------------------------------- /packages/assertions/generate-manual-csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/generate-manual-csv.sh -------------------------------------------------------------------------------- /packages/assertions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/index.js -------------------------------------------------------------------------------- /packages/assertions/mergeResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/mergeResults.js -------------------------------------------------------------------------------- /packages/assertions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/package-lock.json -------------------------------------------------------------------------------- /packages/assertions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/package.json -------------------------------------------------------------------------------- /packages/assertions/tests/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/tests/index-test.js -------------------------------------------------------------------------------- /packages/assertions/update-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/update-list.js -------------------------------------------------------------------------------- /packages/assertions/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/assertions/util.js -------------------------------------------------------------------------------- /packages/cli/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/cli/.editorconfig -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/eslint-results.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/cli/eslint-results.sarif -------------------------------------------------------------------------------- /packages/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/cli/index.js -------------------------------------------------------------------------------- /packages/cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/cli/package-lock.json -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/tests/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/cli/tests/index-test.js -------------------------------------------------------------------------------- /packages/core/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/.editorconfig -------------------------------------------------------------------------------- /packages/core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/.npmignore -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/eslint-results.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/eslint-results.sarif -------------------------------------------------------------------------------- /packages/core/examples/scripts/failingTd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/scripts/failingTd.js -------------------------------------------------------------------------------- /packages/core/examples/scripts/multipleFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/scripts/multipleFiles.js -------------------------------------------------------------------------------- /packages/core/examples/scripts/readFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/scripts/readFile.js -------------------------------------------------------------------------------- /packages/core/examples/scripts/simple-tm-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/scripts/simple-tm-usage.js -------------------------------------------------------------------------------- /packages/core/examples/scripts/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/scripts/simple.js -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/camelCase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/camelCase.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/duplicateEnum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/duplicateEnum.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/duplicatePropertyAffordanceNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/duplicatePropertyAffordanceNames.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/duplicateSecurityDefinitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/duplicateSecurityDefinitions.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/emptyEnum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/emptyEnum.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/emptyForm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/emptyForm.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/emptyOpArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/emptyOpArray.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/emptySecDef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/emptySecDef.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/emptySecurity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/emptySecurity.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/invalidDataType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/invalidDataType.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/invalidInteractionElement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/invalidInteractionElement.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/invalidOp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/invalidOp.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/invalidSecuMatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/invalidSecuMatch.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/invalidSecuScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/invalidSecuScheme.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/multipleRelType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/multipleRelType.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/noContext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/noContext.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/noForm1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/noForm1.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/noForm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/noForm2.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/noForm3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/noForm3.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/noHref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/noHref.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/noTitle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/noTitle.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/usingTM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/usingTM.json -------------------------------------------------------------------------------- /packages/core/examples/tds/invalid/versionInstanceMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/invalid/versionInstanceMissing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/notValidYet/apikeyUriVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/notValidYet/apikeyUriVariable.json -------------------------------------------------------------------------------- /packages/core/examples/tds/notValidYet/bodyApiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/notValidYet/bodyApiKey.json -------------------------------------------------------------------------------- /packages/core/examples/tds/notValidYet/comboOneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/notValidYet/comboOneOf.json -------------------------------------------------------------------------------- /packages/core/examples/tds/notValidYet/oauth2-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/notValidYet/oauth2-client.json -------------------------------------------------------------------------------- /packages/core/examples/tds/notValidYet/oauth2-device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/notValidYet/oauth2-device.json -------------------------------------------------------------------------------- /packages/core/examples/tds/notValidYet/uriSecurity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/notValidYet/uriSecurity.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/InteractionSecurityThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/InteractionSecurityThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/JsonLdThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/JsonLdThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/MetadataThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/MetadataThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/MinimalThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/MinimalThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/actionResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/actionResponse.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/additionalResponses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/additionalResponses.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/apikeySec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/apikeySec.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/baseUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/baseUri.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/bearerExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/bearerExtension.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/bearerSec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/bearerSec.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/cancSubData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/cancSubData.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/constOneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/constOneOf.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/contentTypeComplex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/contentTypeComplex.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/createdModified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/createdModified.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/dataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/dataSchema.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/digestSec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/digestSec.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/formOpArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/formOpArray.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/formOpArrayWithDefaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/formOpArrayWithDefaults.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/fromTM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/fromTM.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/inputActionThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/inputActionThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/languageDirection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/languageDirection.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/linksThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/linksThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/mqtt-experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/mqtt-experimental.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/multiLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/multiLanguage.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/multiProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/multiProperties.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/noIdThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/noIdThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/noSec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/noSec.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/profile.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/pskSec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/pskSec.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/publisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/publisher.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/readWriteAllProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/readWriteAllProperties.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/rootForms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/rootForms.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/safeIdempotent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/safeIdempotent.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/scopesForm_oauth2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/scopesForm_oauth2.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/semanticTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/semanticTD.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/simple.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/simpleWithDefaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/simpleWithDefaults.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/specExampleFull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/specExampleFull.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/support.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/uriVariablesAffordances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/uriVariablesAffordances.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/uriVariablesThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/uriVariablesThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/usingRecursiveTM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/usingRecursiveTM.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/usingTM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/usingTM.json -------------------------------------------------------------------------------- /packages/core/examples/tds/valid/versionThing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/valid/versionThing.json -------------------------------------------------------------------------------- /packages/core/examples/tds/warning/additionalResponsesEmptyResp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/warning/additionalResponsesEmptyResp.json -------------------------------------------------------------------------------- /packages/core/examples/tds/warning/arrayNoItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/warning/arrayNoItems.json -------------------------------------------------------------------------------- /packages/core/examples/tds/warning/enumConst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/warning/enumConst.json -------------------------------------------------------------------------------- /packages/core/examples/tds/warning/objectNoProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/warning/objectNoProperties.json -------------------------------------------------------------------------------- /packages/core/examples/tds/warning/unavailableDirectTm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/warning/unavailableDirectTm.json -------------------------------------------------------------------------------- /packages/core/examples/tds/warning/unavailableRecursiveTm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tds/warning/unavailableRecursiveTm.json -------------------------------------------------------------------------------- /packages/core/examples/tms/invalid/absent_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/invalid/absent_context.json -------------------------------------------------------------------------------- /packages/core/examples/tms/invalid/absent_tm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/invalid/absent_tm.json -------------------------------------------------------------------------------- /packages/core/examples/tms/invalid/no_curly_bracket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/invalid/no_curly_bracket.json -------------------------------------------------------------------------------- /packages/core/examples/tms/invalid/optionalWrongLocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/invalid/optionalWrongLocation.json -------------------------------------------------------------------------------- /packages/core/examples/tms/invalid/single_curly_bracket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/invalid/single_curly_bracket.json -------------------------------------------------------------------------------- /packages/core/examples/tms/invalid/unavailableParent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/invalid/unavailableParent.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/affordances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/affordances.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/extend.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/links.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/missingHref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/missingHref.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/missing_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/missing_title.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/mqtt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/mqtt.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/optional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/optional.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/overwrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/overwrite.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/placeholder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/placeholder.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/property.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/ref.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/security.json -------------------------------------------------------------------------------- /packages/core/examples/tms/valid/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/examples/tms/valid/version.json -------------------------------------------------------------------------------- /packages/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/index.js -------------------------------------------------------------------------------- /packages/core/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/jest.config.js -------------------------------------------------------------------------------- /packages/core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/package-lock.json -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/shared.js -------------------------------------------------------------------------------- /packages/core/td-schema-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/td-schema-full.json -------------------------------------------------------------------------------- /packages/core/td-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/td-schema.json -------------------------------------------------------------------------------- /packages/core/tests/examples-invalid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/tests/examples-invalid.test.js -------------------------------------------------------------------------------- /packages/core/tests/examples-valid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/tests/examples-valid.test.js -------------------------------------------------------------------------------- /packages/core/tests/examples-warning.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/tests/examples-warning.test.js -------------------------------------------------------------------------------- /packages/core/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/tests/index.test.js -------------------------------------------------------------------------------- /packages/core/tests/typo/typoCheckWithTypos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/tests/typo/typoCheckWithTypos.json -------------------------------------------------------------------------------- /packages/core/tests/typo/typoCheckWithoutTypos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/tests/typo/typoCheckWithoutTypos.json -------------------------------------------------------------------------------- /packages/core/tm-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/core/tm-schema.json -------------------------------------------------------------------------------- /packages/defaults/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/.editorconfig -------------------------------------------------------------------------------- /packages/defaults/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/.npmignore -------------------------------------------------------------------------------- /packages/defaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/README.md -------------------------------------------------------------------------------- /packages/defaults/eslint-results.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/eslint-results.sarif -------------------------------------------------------------------------------- /packages/defaults/examples/td-with-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/examples/td-with-defaults.json -------------------------------------------------------------------------------- /packages/defaults/examples/td-without-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/examples/td-without-defaults.json -------------------------------------------------------------------------------- /packages/defaults/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/index.js -------------------------------------------------------------------------------- /packages/defaults/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/package-lock.json -------------------------------------------------------------------------------- /packages/defaults/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/package.json -------------------------------------------------------------------------------- /packages/defaults/src/definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/src/definitions.js -------------------------------------------------------------------------------- /packages/defaults/src/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/src/shared.js -------------------------------------------------------------------------------- /packages/defaults/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/src/util.js -------------------------------------------------------------------------------- /packages/defaults/tests/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/tests/add.test.js -------------------------------------------------------------------------------- /packages/defaults/tests/examples.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/tests/examples.test.js -------------------------------------------------------------------------------- /packages/defaults/tests/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/defaults/tests/remove.test.js -------------------------------------------------------------------------------- /packages/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/README.md -------------------------------------------------------------------------------- /packages/web/external-scripts/generate-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/external-scripts/generate-paths.js -------------------------------------------------------------------------------- /packages/web/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/netlify.toml -------------------------------------------------------------------------------- /packages/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/package-lock.json -------------------------------------------------------------------------------- /packages/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/package.json -------------------------------------------------------------------------------- /packages/web/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/playwright.config.js -------------------------------------------------------------------------------- /packages/web/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/server/server.js -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/android-chrome-384x384.png -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/browserconfig.xml -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /packages/web/src/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /packages/web/src/assets/img/angle-down-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/img/angle-down-solid.svg -------------------------------------------------------------------------------- /packages/web/src/assets/img/eye-slash-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/img/eye-slash-solid.svg -------------------------------------------------------------------------------- /packages/web/src/assets/img/eye-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/assets/img/eye-solid.svg -------------------------------------------------------------------------------- /packages/web/src/examples-paths/examples-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/examples-paths/examples-paths.json -------------------------------------------------------------------------------- /packages/web/src/scripts/aas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/aas.js -------------------------------------------------------------------------------- /packages/web/src/scripts/async-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/async-api.js -------------------------------------------------------------------------------- /packages/web/src/scripts/consent-banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/consent-banner.js -------------------------------------------------------------------------------- /packages/web/src/scripts/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/console.js -------------------------------------------------------------------------------- /packages/web/src/scripts/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/defaults.js -------------------------------------------------------------------------------- /packages/web/src/scripts/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/editor.js -------------------------------------------------------------------------------- /packages/web/src/scripts/examples-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/examples-menu.js -------------------------------------------------------------------------------- /packages/web/src/scripts/json-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/json-yaml.js -------------------------------------------------------------------------------- /packages/web/src/scripts/jsonld-vis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/jsonld-vis.js -------------------------------------------------------------------------------- /packages/web/src/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/main.js -------------------------------------------------------------------------------- /packages/web/src/scripts/monochrome-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/monochrome-theme.js -------------------------------------------------------------------------------- /packages/web/src/scripts/open-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/open-api.js -------------------------------------------------------------------------------- /packages/web/src/scripts/save-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/save-menu.js -------------------------------------------------------------------------------- /packages/web/src/scripts/settings-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/settings-menu.js -------------------------------------------------------------------------------- /packages/web/src/scripts/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/util.js -------------------------------------------------------------------------------- /packages/web/src/scripts/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/validation.js -------------------------------------------------------------------------------- /packages/web/src/scripts/vega-vis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/vega-vis.js -------------------------------------------------------------------------------- /packages/web/src/scripts/visualize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/scripts/visualize.js -------------------------------------------------------------------------------- /packages/web/src/styles/_console.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/_console.scss -------------------------------------------------------------------------------- /packages/web/src/styles/_control-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/_control-panel.scss -------------------------------------------------------------------------------- /packages/web/src/styles/_editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/_editor.scss -------------------------------------------------------------------------------- /packages/web/src/styles/_examples-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/_examples-menu.scss -------------------------------------------------------------------------------- /packages/web/src/styles/_json-yaml-warning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/_json-yaml-warning.scss -------------------------------------------------------------------------------- /packages/web/src/styles/_jsonld-vis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/_jsonld-vis.scss -------------------------------------------------------------------------------- /packages/web/src/styles/_save-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/_save-menu.scss -------------------------------------------------------------------------------- /packages/web/src/styles/_settings-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/_settings-menu.scss -------------------------------------------------------------------------------- /packages/web/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/styles/styles.scss -------------------------------------------------------------------------------- /packages/web/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/src/template.html -------------------------------------------------------------------------------- /packages/web/tests/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/tests/test.spec.js -------------------------------------------------------------------------------- /packages/web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-thingweb/playground/HEAD/packages/web/webpack.config.js --------------------------------------------------------------------------------