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 URI | http://purl.org/dc/elements/1.1/ |
---|---|
Prefix | <dc:*> |
Available in | RSS, Atom, RDF |
Structure
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 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
}
Related
- Dublin Core Terms - Extended Dublin Core metadata
- Parsing Namespaces - How namespace parsing works