<authorization> Authorization

Captures the standards authority/process under which this standard has been developed. The element’s content is typically a text phrase that may be, but need not be, displayed as part of the standards document, such as “An American National Standard”.

Usage/Remarks

Accrediting and Authorization

The idea of accrediting a standards body is typically an American standards issue. American SDOs can be formally “accredited” by ANSI to publish standards. To be so accredited, an SDO must follow ANSI rules, and there are regular audits to ensure compliance. Not all organizations that publish standards in America are accredited, and not all documents published by an accredited organization are authorized to be “An American National Standard”. Thus American SDOs need a structure in the XML metadata to record both that they are accredited (<accrediting-organization>) and that this particular standard has been authorized (<authorization>).
Naming the Authorization
The attribute @authorize-acronym should be placed on <authorization> to name the type of authorization, for example, United States SDOs can name “ANS” indicating an American National Standard. This attribute provides a machine-searchable normalized version of the authorization since the text of the element is free form. For Best Practice, since the attribute name includes the word “acronym”, the values (such as “ANS”) should be given in ALL CAPS.
Naming the Accrediting Organization
The attribute @accredit-acronym should be placed on <accrediting-organization> to name the accrediting organization, for example, United States SDOs can name “ANSI”. This attribute provides a machine-searchable normalized version of the organization since the text of the element is free form. For Best Practice, since the attribute name includes the word “acronym”, the values (such as “ANSI”) should be given in ALL CAPS.
Attributes

Base Attributes

Models and Context
May be contained in
Description
Text, numbers, or special characters, zero or more
Content Model
<!ELEMENT  authorization
                        (#PCDATA 
                         %authorization-elements;)*                 >
Expanded Content Model

(#PCDATA)*

Tagged Sample

In <std-meta>

...
<std-meta>
 ...
 <comm-ref>...</comm-ref>
 <accrediting-organization accredit-acronym="ANSI">Under the 
  authority of the American National Standards Institute</accrediting-organization>
 <authorization authorize-acronym="ANS">An American National 
  Standard</authorization>
 <secretariat>...</secretariat>
</std-meta>
...