<listOrg>

<listOrg> (조직 목록) 식별 가능한 조직에 관한 정보를 제공하며, 각각에 대한 기술 목록을 포함한다. [13.2.2 Organizational Names]
모듈 namesdates — Names, Dates, People, and Places
속성
클럽 회원
에 의해 포함된
포함할 수 있다
주석

The type attribute may be used to distinguish lists of organizations of a particular type if convenient.

<listOrg>
 <head>Libyans</head>
 <org>
  <orgName>Adyrmachidae</orgName>
  <desc>These people have, in most points, the same customs as the Egyptians, but
     use the costume of the Libyans. Their women wear on each leg a ring made of
     bronze [...]</desc>
 </org>
 <org>
  <orgName>Nasamonians</orgName>
  <desc>In summer they leave their flocks and herds upon the sea-shore, and go up
     the country to a place called Augila, where they gather the dates from the
     palms [...]</desc>
 </org>
 <org>
  <orgName>Garamantians</orgName>
  <desc>[...] avoid all society or intercourse with their fellow-men, have no
     weapon of war, and do not know how to defend themselves. [...]</desc>
<!-- ... -->
 </org>
</listOrg>
Content model
<content>
 <sequence>
  <classRef key="model.headLike"
   minOccurs="0maxOccurs="unbounded"/>

  <elementRef key="descminOccurs="0"
   maxOccurs="unbounded"/>

  <alternate minOccurs="0"
   maxOccurs="unbounded">

   <elementRef key="relationminOccurs="1"
    maxOccurs="1"/>

   <elementRef key="listRelation"
    minOccurs="1maxOccurs="1"/>

  </alternate>
  <sequence minOccurs="1"
   maxOccurs="unbounded">

   <alternate minOccurs="1"
    maxOccurs="unbounded">

    <elementRef key="orgminOccurs="1"
     maxOccurs="1"/>

    <elementRef key="listOrgminOccurs="1"
     maxOccurs="1"/>

   </alternate>
   <alternate minOccurs="0"
    maxOccurs="unbounded">

    <elementRef key="relation"
     minOccurs="1maxOccurs="1"/>

    <elementRef key="listRelation"
     minOccurs="1maxOccurs="1"/>

   </alternate>
  </sequence>
 </sequence>
</content>
선언
<rng:element name="listOrg">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:ref name="att.declarable.attributes"/>
 <rng:ref name="att.sortable.attributes"/>
 <rng:group>
  <rng:zeroOrMore>
   <rng:ref name="model.headLike"/>
  </rng:zeroOrMore>
  <rng:zeroOrMore>
   <rng:ref name="desc"/>
  </rng:zeroOrMore>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="relation"/>
    <rng:ref name="listRelation"/>
   </rng:choice>
  </rng:zeroOrMore>
  <rng:oneOrMore>
   <rng:group>
    <rng:oneOrMore>
     <rng:choice>
      <rng:ref name="org"/>
      <rng:ref name="listOrg"/>
     </rng:choice>
    </rng:oneOrMore>
    <rng:zeroOrMore>
     <rng:choice>
      <rng:ref name="relation"/>
      <rng:ref name="listRelation"/>
     </rng:choice>
    </rng:zeroOrMore>
   </rng:group>
  </rng:oneOrMore>
 </rng:group>
</rng:element>
element listOrg
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   att.typed.attributes,
   att.declarable.attributes,
   att.sortable.attributes,
   (
      model.headLike*,
      desc*,
      ( relation | listRelation )*,
      ( ( org | listOrg )+, ( relation | listRelation )* )+
   )
}