<correspAction>

<correspAction> (書簡に関する所作) メッセージの送信・受信をはじめとする書簡に関する所作についての場所、人名/組織名、日付の構造的記述を含む。 [2.4.6 Correspondence Description]
モジュール header — The TEI Header
属性
type⚓︎ (書簡に関する)所作の性質を記述する。
Derived from att.typed
状態 任意
データ型 teidata.enumerated
提案する値は以下の通り:
sent
メッセージの送信や発送に関する情報。
received
メッセージの受信に関する情報。
transmitted
メッセージの転送に関する情報。発送者と次の受信者、転送等。
redirected
未読なままに転送されるメッセージに関する情報。
forwarded
メッセージの転送に関する情報。
クラブのメンバー
上位
header: correspDesc
下位
<correspAction type="sent">
 <persName>Adelbert von Chamisso</persName>
 <settlement>Vertus</settlement>
 <date when="1807-01-29"/>
</correspAction>
Content model
<content>
 <alternate>
  <classRef key="model.correspActionPart"
   minOccurs="1maxOccurs="unbounded"/>

  <classRef key="model.pLikeminOccurs="1"
   maxOccurs="unbounded"/>

 </alternate>
</content>
宣言
<rng:element name="correspAction">
 <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.sortable.attributes"/>
 <rng:ref name="att.typed.attribute.subtype"/>
 <rng:optional>
  <rng:attribute name="type">
   <rng:choice>
    <rng:value>sent</rng:value>
    <rng:value>received</rng:value>
    <rng:value>transmitted</rng:value>
    <rng:value>redirected</rng:value>
    <rng:value>forwarded</rng:value>
    <rng:ref name="teidata.enumerated"/>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:choice>
  <rng:oneOrMore>
   <rng:ref name="model.correspActionPart"/>
  </rng:oneOrMore>
  <rng:oneOrMore>
   <rng:ref name="model.pLike"/>
  </rng:oneOrMore>
 </rng:choice>
</rng:element>
element correspAction
{
   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.sortable.attributes,
   att.typed.attribute.subtype,
   attribute type
   {
      "sent"
    | "received"
    | "transmitted"
    | "redirected"
    | "forwarded"
    | teidata.enumerated
   }?,
   ( model.correspActionPart+ | model.pLike+ )
}