mime-subtype Mime Subtype (deprecated)

Mime subtype for a graphic, multimedia object, or piece of supplementary material.

Usage/Remarks

The source for this attribute’s values is the Internet Assigned Numbers Authority (IANA).

Combine @mime-subtype into @mimetype

Avoid using @mime-subtype and @mimetype as separate attributes. Instead, combine mimetype and mime-subtype values separated by a slash inside @mimetype (e.g., @mimetype="application/excel"). IANA documentation refers to these combined mimetypes as “media-type”.
Prior to JATS version 1.4d1 and BITS version 2.1 BITS, the mimetype and subtype attributes were coded separately (mimetype="application" mime-subtype="excel"). For backwards compatibility, this usage will still be valid JATS/BITS, although precombined mimetypes are now preferred.
OPTIONAL on many elements; click for list and usage
Value Meaning
Text, numbers, or special characters A specific mime subtype (IANA).
Restriction @mime-subtype is an optional attribute; there is no default.
Tagged Samples
Mime sub-types (such as MPEG) for multimedia objects
...
<alternatives>
 <media mime-subtype="mpeg" mimetype="video" orientation="portrait"
   position="anchor" specific-use="archival-format" xlink:href="v1"></media>
 <media mime-subtype="x-flv" mimetype="video" orientation="portrait"
   position="anchor" specific-use="online-format" xlink:href="v1"></media>
</alternatives>
...
Mime sub-type for Comma Separated Values (CSV)
...
<supplementary-material 
   id="source-data-1" content-type="sdata" 
   mimetype="text" mime-subtype="csv" 
   xlink:href="source-data-1.csv">
 <label>Supplementary File 1</label>
 <caption>
  <title>Orthogroup clustering analysis</title>
 </caption>
</supplementary-material>
...