att.ascribed.directed

att.ascribed.directed provides attributes for elements representing speech or action that can be directed at a group or individual. [3.3.3. Quotation 8.3. Elements Unique to Spoken Texts]
Module tei
Members compliment request
Attributes Attributes att.ascribed (who)
toWhom indicates the person, or group of people, to whom a speech act or action is directed.
Status Optional
Datatype 1–∞ occurrences of teidata.pointer separated by whitespace
In the following example from Mary Pix's The False Friend, speeches (sp) in the body of the play are linked to castItem elements in the castList using the toWhom attribute, which is used to specify who the speech is directed to. Additionally, the stage includes toWhom to indicate the directionality of the action.

<castItem type="role">
   
<role xml:id="emil">Emilius.</role>
</castItem>
<castItem type="role">
   
<role xml:id="lov">Lovisa</role>
</castItem>
<castItem type="role">
   
<role xml:id="serv">A servant</role>
</castItem>
<!-- ... -->
<sp who="#emil" toWhom="#lov">
   
<speaker>Emil.</speaker>
   
<l n="1">My love!</l>
</sp>
<sp who="#lov" toWhom="#emil">
   
<speaker>Lov.</speaker>
   
<l n="2">I have no Witness of my Noble Birth</l>
   
<stage who="emil" toWhom="#serv">Pointing to her Woman.</stage>
   
<l>But that poor helpless wretch——</l>
</sp>
Note
To indicate the recipient of written correspondence, use the elements used in section 2.4.6. Correspondence Description, rather than a toWhom attribute.
Source Github

<classSpec module="tei" type="atts" ident="att.ascribed.directed">
   
<desc>provides attributes for elements representing speech or action that can be directed at a
    group or individual.
</desc>
   
<classes>
      
<memberOf key="att.ascribed"/>
   
</classes>
   
<attList>
      
<attDef ident="toWhom">
         
<desc>indicates the person, or group of people, to whom a speech act or action is directed.</desc>
         
<datatype maxOccurs="unbounded">
            
<dataRef key="teidata.pointer"/>
         
</datatype>
      
</attDef>
   
</attList>
</classSpec>