SddAudiences

DonovanSharp - Wed Aug 30 2006 - Version 1.8
Parent topic: SddContents

SDD Part 0: Introduction and Primer to the SDD Standard

3.9 SDD audiences

SDD contains the provision for defining taxon names for each entity to be applied to delivering products targetted at particular audiences, enabling users to be provided with names they are familiar with. For example taxonomists may be provided with scientific names while landholders are provided with common names.

A simple SDD code instance defining audiences has the basic structure shown below and in Example 3.9.1.

Example 3.9.1 - Multiple taxon names for a single entity based on intended audience

   <TaxonNames>
       <TaxonName id='95'>
         <Label audience="student">
           <Text>Aristida latifolia
           </Text>
         </Label>
         <Label audience="expert">
           <Text>A. latifolia
           </Text>
         </Label>
         <Label audience="farmer">
           <Text>Feathertop Wiregrass
           </Text>
         </Label>
       </TaxonName>
  </TaxonNames>
  <Audiences>
    <Audience>
      <Representation>
          <Label>student</Label>
      </Representation>
      <ExpertiseLevel>ExpertiseLevel2</ExpertiseLevel>
    </Audience>
    <Audience>
      <Representation>
          <Label>expert</Label>
      </Representation>
      <ExpertiseLevel>ExpertiseLevel5</ExpertiseLevel>
    </Audience>
    <Audience>
      <Representation>
          <Label>farmer</Label>
      </Representation>
      <ExpertiseLevel>ExpertiseLevel3</ExpertiseLevel>
    </Audience>
  </Audiences>

The <Representation> element provides a label for the description. This may be useful if the instance document includes multiple descriptions for different purposes, or is intended for publication in multiple languages (see the topic Language support in SDD.

<ExpertiseLevel> is restricted to values from 0-5. These categories allow the communication of expected expertise between different applications using UBIF.

Recommended interpretations:

  • 0 = expertise level undefined
  • 1 = elementary school (year 1 to 6);
  • 2 = middle school (year 7 to 10);
  • 3 = high school (year 11 above) and general public (trying to avoid any specialized terminology or jargon);
  • 4 = university students or (partly) trained personnel (using terminology, but avoiding or explaining problematic terminology);
  • 5 = experts (using the full range of terminology).

-- Main.DonovanSharp - 01 Jun 2006