<availability>

<availability> (availability) 提供關於文件可利用性的資訊,例如使用或發行上的任何限制、版權狀態等。 [2.2.4 Publication, Distribution, Licensing, etc.]
組件 header — The TEI Header
屬性
status⚓︎ (status) 提供一個代號,用來確認文件目前的可利用性。
狀態 非必備的
資料類型 teidata.enumerated
合法的值是:
free
(free) 文件的可利用性不受限。
unknown
(unknown) 文件狀態不明。
restricted
(restricted) 文件的可利用性受限制。
俱乐部会员
可包含在於
msdescription: adminInfo
可包含
core: p
header: licence
linking: ab

A consistent format should be adopted

例子
<availability status="restricted">
 <p>僅供學術研究使用</p>
</availability>
<availability status="free">
 <p>用於公共領域</p>
</availability>
<availability status="restricted">
 <p>需徵求出版商授權</p>
</availability>
Content model
<content>
 <alternate minOccurs="1"
  maxOccurs="unbounded">

  <classRef key="model.availabilityPart"/>
  <classRef key="model.pLike"/>
 </alternate>
</content>
宣告
<rng:element name="availability">
 <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.declarable.attributes"/>
 <rng:optional>
  <rng:attribute name="status">
   <rng:choice>
    <rng:value>free</rng:value>
    <rng:value>unknown</rng:value>
    <rng:value>restricted</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:oneOrMore>
  <rng:choice>
   <rng:ref name="model.availabilityPart"/>
   <rng:ref name="model.pLike"/>
  </rng:choice>
 </rng:oneOrMore>
</rng:element>
element availability
{
   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.declarable.attributes,
   attribute status { "free" | "unknown" | "restricted" }?,
   ( model.availabilityPart | model.pLike )+
}