Skip to content

Dublin Core Namespace Reference

The Dublin Core namespace provides standardized metadata elements for describing digital resources. It offers a simple and effective way to add bibliographic information to feeds and items.

Namespace URIhttp://purl.org/dc/elements/1.1/
SpecificationDublin Core Metadata Terms
Prefix<dc:*>
Available inRSS, Atom, RDF
Propertydc

Types

INFO

TDate represents date fields in the type definitions. When parsing, dates are returned as strings in their original format (see Parsing › Handling Dates for more details). When generating, dates should be provided as JavaScript Date objects.

ts
export namespace DcNs {
  export type ItemOrFeed<TDate extends DateLike> = {
    title?: string
    creator?: string
    subject?: string
    description?: string
    publisher?: string
    contributor?: string
    date?: TDate
    type?: string
    format?: string
    identifier?: string
    source?: string
    language?: string
    relation?: string
    coverage?: string
    rights?: string
  }
}