Class XmpDublinCoreMetadata
Dublin Core namespace - The Dublin Core namespace provides a set of commonly used properties. The names and usage shall be as defined in the Dublin Core Metadata Element Set, created by the Dublin Core Metadata Initiative (DCMI).
Assembly: FacturXDotNet.dll
public class XmpDublinCoreMetadata
Properties
Contributor
<p> DCMI definition: An entity responsible for making contributions to the resource. </p> <p> DCMI comment: Examples of a contributor include a person, an organization, or a service. Typically, the name of a contributor should be used to indicate the entity. </p> <p> XMP addition: XMP usage is a list of contributors. These contributors should not include those listed in dc:creator. </p>
public HashSet<string> Contributor { get; set; }
Coverage
<p> DCMI definition: The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. </p> <p> XMP addition: XMP usage is the extent or scope of the resource. </p>
public string? Coverage { get; set; }
Creator
<p> DCMI definition: An entity primarily responsible for making the resource. </p> <p> DCMI comment: Examples of a creator include a person, an organization, or a service. Typically, the name of a creator should be used to indicate the entity. </p> <p> XMP addition: XMP usage is a list of creators. Entities should be listed in order of decreasing precedence, if such order is significant. </p>
public List<string> Creator { get; set; }
Date
<p> DCMI definition: A point or period of time associated with an event in the life cycle of the resource. </p>
public List<DateTimeOffset> Date { get; set; }
Description
<p> DCMI definition: An account of the resource. </p> <p> XMP addition: XMP usage is a list of textual descriptions of the content of the resource, given in various languages. </p>
public List<string> Description { get; set; }
Format
<p> DCMI definition: The file format, physical medium, or dimensions of the resource. </p> <p> DCMI comment: Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]. </p> <p> XMP addition: XMP usage is a MIME type. Dimensions would be stored using a media-specific property, beyond the scope of this document. </p>
public string? Format { get; set; }
Identifier
<p> DCMI definition: An unambiguous reference to the resource within a given context. </p> <p> DCMI comment: Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. </p>
public string? Identifier { get; set; }
Language
<p> DCMI definition: A language of the resource. </p> <p> XMP addition: XMP usage is a list of languages used in the content of the resource. </p>
public HashSet<string> Language { get; set; }
Publisher
<p> DCMI definition: An entity responsible for making the resource available. </p> <p> DCMI comment: Examples of a publisher include a person, an organization, or a service. Typically, the name of a publisher should be used to indicate the entity. </p> <p> XMP addition: XMP usage is a list of publishers. </p>
public HashSet<string> Publisher { get; set; }
Relation
<p> DCMI definition: A related resource. </p> <p> DCMI comment: Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. </p> <p> XMP addition: XMP usage is a list of related resources. </p>
public HashSet<string> Relation { get; set; }
Rights
<p> DCMI definition: Information about rights held in and over the resource. </p> <p> DCMI comment: Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. </p> <p> XMP addition: XMP usage is a list of informal rights statements, given in various languages. </p>
public List<string> Rights { get; set; }
Source
<p> DCMI definition: A related resource from which the described resource is derived. </p> <p> DCMI comment: The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. </p>
public string? Source { get; set; }
Subject
<p> DCMI definition: The topic of the resource. </p> <p> DCMI comment: Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the dc:coverage element. </p> <p> XMP addition: XMP usage is a list of descriptive phrases or keywords that specify the content of the resource. </p>
public HashSet<string> Subject { get; set; }
Title
<p> DCMI definition: A name given to the resource. </p> <p> DCMI comment: Typically, a title will be a name by which the resource is formally known. </p> <p> XMP addition: XMP usage is a title or name, given in various languages. </p>
public List<string> Title { get; set; }
Type
<p> DCMI definition: The nature or genre of the resource. </p> <p> DCMI comment: Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the dc:format element. </p> <p> XMP addition: See the dc:format entry for clarification of the XMP usage of that element. </p>
public HashSet<string> Type { get; set; }