Metreeca Wire
    Preparing search index...

    An RDF datatype-typed literal, as a lexical-form/datatype-IRI pair.

    Pairs the lexical form with the IRI of its XSD (or user-defined) datatype. Per RDF 1.1, a literal with no datatype IRI is interpreted as xsd:string; datatype is therefore optional and absent for plain literals. One of the literal forms making up Term. Construct one with typed.

    type Typed = {
        text: string;
        datatype?: Reference;
    }
    Index

    Properties

    Properties

    text: string
    datatype?: Reference