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

For details on type parameters (TDate), see TypeScript Reference.

ts
export namespace DcNs {
  export type ItemOrFeed<TDate extends DateLike> = {
    titles?: Array<string>
    creators?: Array<string>
    subjects?: Array<string>
    descriptions?: Array<string>
    publishers?: Array<string>
    contributors?: Array<string>
    dates?: Array<TDate>
    types?: Array<string>
    formats?: Array<string>
    identifiers?: Array<string>
    sources?: Array<string>
    languages?: Array<string>
    relations?: Array<string>
    coverage?: Array<string>
    rights?: Array<string>
  }
}