Skip to content

hololinked.td.metadata.Link

Bases: Schema

Represents a link in the link section of the TD schema - https://www.w3.org/TR/wot-thing-description11/#link

Source code in hololinked/hololinked/td/metadata.py
class Link(Schema):
    """
    Represents a link in the link section of the TD
    schema - https://www.w3.org/TR/wot-thing-description11/#link
    """

    href: str
    anchor: Optional[str]
    rel: Optional[str]
    type: Optional[str] = Field(default="application/json")

hololinked.td.metadata.VersionInfo

Bases: Schema

Represents version info. schema - https://www.w3.org/TR/wot-thing-description11/#versioninfo

Source code in hololinked/hololinked/td/metadata.py
class VersionInfo(Schema):
    """
    Represents version info.
    schema - https://www.w3.org/TR/wot-thing-description11/#versioninfo
    """

    instance: str
    model: str