DatasetMetadata

DonovanSharp - Fri Jul 07 2006 - Version 1.7
Parent topic: SddContents

SDD Part 0: Introduction and Primer to the SDD Standard

3.3 Dataset metadata

Each dataset in an SDD document must include some metadata about the dataset. The dataset metadata typically describes such things as source, ownership, copyright, versioning etc for the dataset.

Metadata is stored in two places within an SDD instance document. The <TechnicalMetadata> element under <Datasets> provides information about the processor that created the SDD document. Information about the dataset itself (or more accurately, the dataset from which the SDD document was created), is stored within the <Dataset> element.

Example 3.3.1 - Content Metadata for an SDD document

<Representation>
  <Label xml:lang="en">Flying Fishes of the world</Label>
  <Label xml:lang="de">Fliegende Fische der Welt</Label>
  <Detail xml:lang="en" role="Description">A digital field guide</Detail>
  <Detail xml:lang="en" role="Coverage">Flying Fishes (Exocoetidae)</Detail>
  <Detail xml:lang="de" role="Coverage">Fliegende Fische (Exocoetidae)</Detail>
  <MediaObject ref="m1"/>
</Representation>
<Links>
  <Link rel="Alternate" href="http://www.DiversityCampus.net/Projects/xxx"/>
</Links>
<RevisionData>
  <Creators>
    <Agent role="aut" ref="a1" firstcontribution="2001-01-01T00:00:00Z" lastcontribution="2003-12-01T15:35:00Z"/>
    <Agent role="edt" ref="a1"/>
    <Agent role="edt" ref="a2"/>
  </Creators>
  <Contributors>
    <Agent role="ctb" ref="a3"/>
    <Agent role="trl" ref="a2"/>
  </Contributors>
  <DateCreated>1999-08-13T00:00:00</DateCreated>
  <DateModified>2006-04-20T00:00:00</DateModified>
  <RevisionStatus>Unrevised</RevisionStatus>
  <Version major="1" minor="01" modifier="beta" issued="2006-04-28T00:00:00Z" />
</RevisionData>
<IPRStatements>
  <IPRStatement role="Copyright">
    <Label>(c) 2002 Allmende Biological Research Station</Label>
    <Detail>(c) 2002 Allmende Biological Research Station. All rights reserved. No part of this data may be....</Detail>
  </IPRStatement>
  <IPRStatement role="TermsOfUse">
    <Detail>Data may be freely used as long as ...</Detail>
    <Detail xml:lang="de">Die Daten dürfen frei verwendet werden, solange ...</Detail>
  </IPRStatement>
  <IPRStatement role="Disclaimer">
    <Label>See also the disclaimer.</Label>
    <URI>www.xyz.org/disclaimer.html</URI>
  </IPRStatement>
  <IPRStatement role="Acknowledgement">
    <Detail>The work was made possible by a grant from ...</Detail>
    <Detail xml:lang="de">Wir danken der X-Stiftung für ...</Detail>
  </IPRStatement>
</IPRStatements>
<Scope>
  <Citation ref="p111"/>
  <GeographicArea ref="g1"/>
  <GeographicArea ref="g2"/>
</Scope>
 

-- Main.DonovanSharp - 01 Jun 2006