AgencyId Data Type

Java class for AgencyId complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="AgencyId">
   <complexContent>
     <restriction base=" http://www.w3.org/2001/XMLSchema}anyType">
       <choice>
         <element name="agency_id">
           <simpleType>
             <restriction base=" http://www.w3.org/2001/XMLSchema}long">
               <totalDigits value="12"/>
             </restriction>
           </simpleType>
         </element>
         <element name="agency_uic_id" minOccurs="0">
           <simpleType>
             <restriction base=" http://www.w3.org/2001/XMLSchema}string">
               <maxLength value="20"/>
             </restriction>
           </simpleType>
         </element>
       </choice>
     </restriction>
   </complexContent>
 </complexType>
 

Namespace
(Default)
Properties
name data type type namespace min/max occurs description
agency_id long element 0/1  
agency_uic_id string element 0/1 Alternative way of entering the responsible agency. Using UIC agency code instead of PCS-specific id.

Example

<a----->
  <agency_id>...</agency_id>
  <agency_uic_id>...</agency_uic_id>
</a----->