MCPcopy Index your code
hub / github.com/WebThingsIO/webthing-node / ThingDescription

Interface ThingDescription

lib/thing.ts:662–677  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

660 }
661
662 export interface ThingDescription {
663 id: string;
664 title: string;
665 name: string;
666 href: string;
667 '@context': string;
668 '@type': string[];
669 properties: { [name: string]: Property.PropertyDescription };
670 links: Link[];
671 actions: {[name: string]: Action.ActionMetadata};
672 events: {[name: string]: Event.EventMetadata};
673 description?: string;
674 base?: string
675 securityDefinitions?: {[security: string]: SecurityScheme}
676 security?: string
677 }
678}
679
680export = Thing;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected