<availability>

<availability> (disponibilité) renseigne sur la disponibilité du texte, par exemple sur toutes restrictions quant à son usage ou sa diffusion, son copyright, etc. [2.2.4 Publication, Distribution, Licensing, etc.]
Module header — The TEI Header
Attributs
status⚓︎ (status) donne un code caractérisant la disponibilité actuelle d’un texte.
Statut Optionel
Type de données teidata.enumerated
Les valeurs autorisées sont:
free
(free) le texte est libre de droits.
unknown
(unknown) le statut du texte est inconnu.
restricted
(restricted) le texte est sous droits.
Membre du
Contenu dans
msdescription: adminInfo
Peut contenir
core: p
header: licence
linking: ab
Note

On devrait adopter un format de codage reconnu.

Exemple
<availability status="restricted">
 <p>L' ABES a adopté le système Créative Commons pour permettre à tous ceux qui le
   souhaitent, de reproduire tout ou partie des rubriques du site de l'ABES sur support
   papier ou support électronique.</p>
</availability>
Modèle de contenu
<content>
 <alternate minOccurs="1"
  maxOccurs="unbounded">

  <classRef key="model.availabilityPart"/>
  <classRef key="model.pLike"/>
 </alternate>
</content>
Schéma Declaration
<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 )+
}