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/ |
|---|---|
| Specification | Dublin Core Metadata Terms |
| Prefix | <dc:*> |
| Available in | RSS, Atom, RDF |
| Property | dc |
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>
}
}Related
- Dublin Core Terms - Extended Dublin Core metadata
- Parsing Namespaces - How namespace parsing works