Skip to content

RDF Namespace

Built-in namespace for RDF feeds exposing standard RDF metadata.

Namespace URIhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
SpecificationRDF/XML Syntax Specification
Prefix<rdf:*>
Available inRDF
Propertyrdf

Types

ts
export namespace RdfNs {
  export type About = {
    about?: string
  }

  /** @internal General RDF element kept for potential future use when all RDF data is needed. */
  export type Element = {
    about?: string
    resource?: string
    id?: string
    nodeId?: string
    parseType?: string
    datatype?: string
    type?: string
    value?: Array<unknown>
  }
}