<org>

<org> (organization) provides information about an identifiable organization such as a business, a tribe, or any other grouping of people. [13.3.3. Organizational Data]
Modulenamesdates
Attributes
rolespecifies a primary role or classification for the organization.
Status Optional
Datatype 1–∞ occurrences of teidata.enumerated separated by whitespace
Note

Values for this attribute may be locally defined by a project, using arbitrary keywords such as artist, employer, familyGroup, or politicalParty, each of which should be associated with a definition. Such local definitions will typically be provided by a desc for each <valItem> element in the schema specification of the project's customization.

Member of
Contained by
May contain
Example
<org xml:id="JAMs">
 <orgName>Justified Ancients of Mummu</orgName>
 <desc>An underground anarchist collective spearheaded by
 <persName>Hagbard Celine</persName>, who fight the Illuminati
   from a golden submarine, the <name>Leif Ericson</name>
 </desc>
 <bibl>
  <author>Robert Shea</author>
  <author>Robert Anton Wilson</author>
  <title>The Illuminatus! Trilogy</title>
 </bibl>
</org>
Content model
<content>
 <sequence>
  <classRef key="model.headLike"
   minOccurs="0maxOccurs="unbounded"/>

  <alternate>
   <classRef key="model.pLike"
    minOccurs="0maxOccurs="unbounded"/>

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

    <classRef key="model.labelLike"/>
    <classRef key="model.nameLike"/>
    <classRef key="model.placeLike"/>
    <classRef key="model.orgPart"/>
    <classRef key="model.milestoneLike"/>
   </alternate>
  </alternate>
  <alternate minOccurs="0"
   maxOccurs="unbounded">

   <classRef key="model.noteLike"/>
   <classRef key="model.biblLike"/>
   <elementRef key="linkGrp"/>
   <elementRef key="link"/>
   <elementRef key="ptr"/>
  </alternate>
  <classRef key="model.personLike"
   minOccurs="0maxOccurs="unbounded"/>

 </sequence>
</content>
Schema Declaration
element org
{
   tei_att.global.attributes,
   tei_att.typed.attributes,
   tei_att.editLike.attributes,
   tei_att.sortable.attributes,
   attribute role { list { teidata.enumerated+ } }?,
   (
      tei_model.headLike*,
      (
         tei_model.pLike*
       | (
            tei_model.labelLike
          | tei_model.nameLike
          | tei_model.placeLike
          | tei_model.orgPart
          | tei_model.milestoneLike
         )*
      ),
      (
         tei_model.noteLike
       | tei_model.biblLike
       | tei_linkGrp
       | tei_link
       | tei_ptr
      )*,
      tei_model.personLike*
   )
}