NIEM Examples - LEISS (GPQ/GPR)
General Person Query NIEM Specifications
This section provides NIEM format and examples for General Person Query/Response (GPQ/GPR).
All Nlets NIEM messages must be based on the Nlets NIEM Message Structure and include the standard Nlets XML Header as detailed in Message Structure. The NIEM header and hierarchy of the elements in this section are omitted to avoid redundancy. Consult the associated schemas and instances to determine the correct XPaths of the elements.
Element Dictionary
Transaction types detailed below include: General Person Query (GPQ) and General Person Response (GPR).
Query Formats
General Person Query (GPQ)
Inquiry Data (n2:NLETSInquiryData)
This element will contain all elements specific to this transaction.
LEISS Query Data (nlets-niem:LEISSQuery)
Information about a person or an address to query LEISS.
Person Data (nlets-niem:Person)
This element encapsulates the information about the person being queried.
nc:PersonBirthDate
A date a person was born.
nc:Date
A full date.
This element contains the DOB for the person being queried on. This data in this element must
be in xsd:date format, that is: yyyy-mm-dd.
nc:PersonName
A combination of names by which a person is known.
nc:PersonGivenName
A first name of a person.
nc:PersonMiddleName
A middle name of a person.
nc:PersonSurName
A last name or family name of a person.
nc:PersonFullName
A complete name of a person.
This element must contain the full name of the person in the format FIRST MIDDLE LAST.
nc:PersonPassportIdentification
Information about a person's passport.
nc:IdentificationID
The person's passport number.
nc:PersonSSNIdentification
Information about a person's Social Security Number (SSN), a unique reference
assigned by the United States Social Security Administration.
nc:IdentificationID
The person's Social Security number.
im:AlienNumber
Information about a person's Alien number.
nc:IdentificationID
The person's Alien number.
Address Data (nc:Location)
This element encapsulates the information about an address being queried.
nc:LocationAddress
Information about an address.
nc:StructuredAddress
Elements of a structured address, such as the street, city, state, etc.
nc:LocationStreet
An element that encapsulates the street number and street name
nc:StreetNumberText
The number of a street address, e.g., the "123" in "123 MAIN ST".
nc:StreetPredirectionalText
The direction text for the street address, e.g., the "W" in "123 W MAIN ST". Optional.
nc:StreetName
The name of a street address, e.g., the "MAIN ST" in "123 MAIN ST".
nc:AddressSecondaryUnitText
An element for placing a unit number, apartment number, etc., for example, APT. 1234
nc:LocationCityName
The name of the city for the address being queried.
nc:LocationStateName
The name of the state for the address being queried.
nc:LocationPostalCode
The postal code for the address being queried.
nc:LocationCountryName
The name of the country for the address being queried. This element is OPTIONAL in all queries by Address.
Response Formats
General Person Response (GPR)
Nlets constructs the GPR message using a transformation of the LEISS response to a Nlets NIEM-formatted message (GPR).
The section below details the top-level elements. Download the GPR schema for details of all elements. Refer to the examples for some specific details.
Response Data (n2:NLETSResponseData)
All data relevant to the response message.
nlets-niem:LEISSResponse
This element encapsulates the LEISS response data.
nlets-niem:LEISSPackage
This element contains metadata from the LEISS response as well as any information returned relevant to the person or address in the search.
nc:CaveatText
This element contains caveat information returned from the LEISS system about the contents of the search results.
n2:ResponseText
This element contains information from the LEISS system when the search results in no match being found.
General Person Query NIEM Examples
Example 1: Person Name search, Option 1: First Name and Last Name (with optional Middle Name).
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPQEXAMPL1</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nlets-niem:Person>
<nc:PersonName>
<nc:PersonGivenName>FRANK</nc:PersonGivenName>
<nc:PersonMiddleName>SAMUEL</nc:PersonMiddleName>
<nc:PersonSurName>JONES</nc:PersonSurName>
</nc:PersonName>
</nlets-niem:Person>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 2: Person Name search, Option 2: Date of Birth and First Name and Last Name (without optional Middle Name).
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPQEXAMPL2</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nlets-niem:Person>
<nc:PersonBirthDate>
<nc:Date>1980-01-01</nc:Date>
</nc:PersonBirthDate>
<nc:PersonName>
<nc:PersonGivenName>FRANK</nc:PersonGivenName>
<nc:PersonSurName>JONES</nc:PersonSurName>
</nc:PersonName>
</nlets-niem:Person>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 3: Person Name search, Option 3: Passport Number and First Name and Last Name (without optional Middle Name).
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPQEXAMPL3</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nlets-niem:Person>
<nc:PersonName>
<nc:PersonGivenName>FRANK</nc:PersonGivenName>
<nc:PersonSurName>JONES</nc:PersonSurName>
</nc:PersonName>
<nc:PersonPassportIdentification>
<nc:IdentificationID>123456789</nc:IdentificationID>
</nc:PersonPassportIdentification>
</nlets-niem:Person>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 4: Person Name search, Option 4: Full Name (with optional Middle Name).
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPQEXAMPL4</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nlets-niem:Person>
<nc:PersonName>
<nc:PersonFullName>FRANK MIDDLE JONES</nc:PersonFullName>
</nc:PersonName>
</nlets-niem:Person>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 5: Person Identifier Search, Option 1: Social Security Number.
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPQEXAMPL5</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nlets-niem:Person>
<nc:PersonSSNIdentification>
<nc:IdentificationID>123456789</nc:IdentificationID>
</nc:PersonSSNIdentification>
</nlets-niem:Person>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 6: Person Identifier Search, Option 2: Alien Number.
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0"
xmlns:im="http://niem.gov/niem/domains/immigration/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPQEXAMPL6</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nlets-niem:Person>
<im:AlienNumber>
<nc:IdentificationID>123456789</nc:IdentificationID>
</im:AlienNumber>
</nlets-niem:Person>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 7: Address Search, Option 1: Street Number and Street Name only.
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPQEXAMPL7</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nc:Location>
<nc:LocationAddress>
<nc:StructuredAddress>
<nc:LocationStreet>
<nc:StreetNumberText>1918</nc:StreetNumberText>
<nc:StreetName>WHISPERING WIND</nc:StreetName>
</nc:LocationStreet>
</nc:StructuredAddress>
</nc:LocationAddress>
</nc:Location>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 8: Address Search, Options 1/2/3/4: Fully Structured Address.
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPQEXAMPL8</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nc:Location>
<nc:LocationAddress>
<nc:StructuredAddress>
<nc:LocationStreet>
<nc:StreetNumberText>1918</nc:StreetNumberText>
<nc:StreetPredirectionalText>W</nc:StreetPredirectionalText>
<nc:StreetName>WHISPERING WIND</nc:StreetName>
</nc:LocationStreet>
<nc:LocationCityName>PHOENIX</nc:LocationCityName>
<nc:LocationStateName>AZ</nc:LocationStateName>
<nc:LocationCountryName>UNITED STATES</nc:LocationCountryName>
<nc:LocationPostalCode>85085</nc:LocationPostalCode>
</nc:StructuredAddress>
</nc:LocationAddress>
</nc:Location>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 9: Response to a Search Request (Person or Address).
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0"
xmlns:im="http://niem.gov/niem/domains/immigration/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPR</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>VTICE0000</nh2:OriginatingORIID>
<nh2:DestinationORIID>AZNLETSXX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPREXAMPL9</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSResponseData n2:key="GPR">
<nlets-niem:LEISSResponse>
<nlets-niem:LEISSPackage>
<nlets-niem:DataItemID>EID.123456789.PersonSubject.AlienEncounter </nlets-niem:DataItemID>
<nlets-niem:DataItemDate>2011-11-11</nlets-niem:DataItemDate>
<nlets-niem:DataItemReferenceID>123456789</nlets-niem:DataItemReferenceID>
<nlets-niem:DataOwnerMetadata>
<nlets-niem:DataOwnerIdentifier>
<nlets-niem:OriginatingAgencyID>ICE</nlets-niem:OriginatingAgencyID>
<nc:OrganizationName>Department of Homeland Security</nc:OrganizationName>
<nlets-niem:SystemID>ICEPIC</nlets-niem:SystemID>
</nlets-niem:DataOwnerIdentifier>
</nlets-niem:DataOwnerMetadata>
<nlets-niem:DisseminationCriteria>white</nlets-niem:DisseminationCriteria>
<nlets-niem:LEISSPerson>
<nc:PersonAlternateName> <!-- multiples possible -->
<nc:PersonGivenName>FRANK</nc:PersonGivenName>
<nc:PersonMiddleName>SAMUEL</nc:PersonMiddleName>
<nc:PersonSurName>JONES</nc:PersonSurName>
</nc:PersonAlternateName>
<nc:PersonBirthDate>
<nc:Date>1980-01-01</nc:Date>
</nc:PersonBirthDate>
<nc:PersonCitizenshipFIPS10-4Code>PS</nc:PersonCitizenshipFIPS10-4Code>
<nc:PersonEyeColorText>BROWN</nc:PersonEyeColorText>
<nc:PersonHairColorText>BROWN</nc:PersonHairColorText>
<nc:PersonName> <!-- multiples possible -->
<nc:PersonGivenName>FRANK</nc:PersonGivenName>
<nc:PersonMiddleName>SAMUEL</nc:PersonMiddleName>
<nc:PersonSurName>JONES</nc:PersonSurName>
</nc:PersonName>
<nc:PersonPassportIdentification>
<nc:IdentificationID>987654321</nc:IdentificationID>
<nc:IdentificationEffectiveDate>
<nc:Date>2020-01-31</nc:Date>
</nc:IdentificationEffectiveDate>
<nc:IdentificationExpirationDate>
<nc:Date>2030-01-31</nc:Date>
</nc:IdentificationExpirationDate>
</nc:PersonPassportIdentification>
<nc:PersonSexCode>M</nc:PersonSexCode>
<nc:PersonSSNIdentification>
<nc:IdentificationID>111223344</nc:IdentificationID>
</nc:PersonSSNIdentification>
<im:AlienNumber>
<nc:IdentificationID>123456789</nc:IdentificationID>
</im:AlienNumber>
</nlets-niem:LEISSPerson>
</nlets-niem:LEISSPackage>
<nc:CaveatText>WANTED PERSON INFORMATION IS NOT PROVIDED IN THIS DHS QUERY FORMAT.
PLEASE QUERY NCIC FOR RECORDS RELATING TO WANTS AND WARRANTS THAT MAY BE OUTSTANDING</nc:CaveatText>
</nlets-niem:LEISSResponse>
</n2:NLETSResponseData>
</n2:NLETS>
Example 10: Retrieval Request with a known DataItemID (taken from a response to a previous search request).
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPQ</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>AZNLETSXX</nh2:OriginatingORIID>
<nh2:DestinationORIID>AX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GLQEXMPL10</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSInquiryData Key="GPQ">
<nlets-niem:LEISSQuery>
<nlets-niem:DataItemID>EID.123456789.PersonSubject.AlienSubjectId</nlets-niem:DataItemID>
</nlets-niem:LEISSQuery>
</n2:NLETSInquiryData>
</n2:NLETS>
Example 11: Response to a Retrieval Request with a known DataItemID.
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nlets-niem="http://www.nlets.org/niem"
xmlns:nc="http://niem.gov/niem/niem-core/2.0"
xmlns:im="http://niem.gov/niem/domains/immigration/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPR</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>VTICE0000</nh2:OriginatingORIID>
<nh2:DestinationORIID>AZNLETSXX</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPREXMPL11</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSResponseData n2:key="GPR">
<nlets-niem:LEISSResponse>
<nlets-niem:LEISSPackage>
<nlets-niem:DataItemID>EID.123456789.PersonSubject.AlienEncounter</nlets-niem:DataItemID>
<nlets-niem:DataItemDate>2011-11-11</nlets-niem:DataItemDate>
<nlets-niem:DataItemReferenceID>123456789</nlets-niem:DataItemReferenceID>
<nlets-niem:DataOwnerMetadata>
<nlets-niem:DataOwnerIdentifier>
<nlets-niem:OriginatingAgencyID>ICE</nlets-niem:OriginatingAgencyID>
<nc:OrganizationName>Department of Homeland Security</nc:OrganizationName>
<nlets-niem:SystemID>ICEPIC</nlets-niem:SystemID>
</nlets-niem:DataOwnerIdentifier>
</nlets-niem:DataOwnerMetadata>
<nlets-niem:DisseminationCriteria>white</nlets-niem:DisseminationCriteria>
<nlets-niem:LEISSPerson>
<nc:PersonAlternateName> <!-- multiples possible -->
<nc:PersonGivenName>FRANK</nc:PersonGivenName>
<nc:PersonMiddleName>SAMUEL</nc:PersonMiddleName>
<nc:PersonSurName>JONES</nc:PersonSurName>
</nc:PersonAlternateName>
<nc:PersonBirthDate>
<nc:Date>1980-01-01</nc:Date>
</nc:PersonBirthDate>
<nc:PersonCitizenshipFIPS10-4Code>PS</nc:PersonCitizenshipFIPS10-4Code>
<nc:PersonEyeColorText>BROWN</nc:PersonEyeColorText>
<nc:PersonHairColorText>BROWN</nc:PersonHairColorText>
<nc:PersonHeightMeasure>
<nc:MeasurePointValue>150</nc:MeasurePointValue>
</nc:PersonHeightMeasure>
<nc:PersonName> <!-- multiples possible -->
<nc:PersonGivenName>FRANK</nc:PersonGivenName>
<nc:PersonMiddleName>SAMUEL</nc:PersonMiddleName>
<nc:PersonSurName>JONES</nc:PersonSurName>
</nc:PersonName>
<nc:PersonPassportIdentification>
<nc:IdentificationID>987654321</nc:IdentificationID>
<nc:IdentificationEffectiveDate>
<nc:Date>2020-01-31</nc:Date>
</nc:IdentificationEffectiveDate>
<nc:IdentificationExpirationDate>
<nc:Date>2030-01-31</nc:Date>
</nc:IdentificationExpirationDate>
</nc:PersonPassportIdentification>
<nc:PersonSexCode>M</nc:PersonSexCode>
<nc:PersonSSNIdentification>
<nc:IdentificationID>111223344</nc:IdentificationID>
</nc:PersonSSNIdentification>
<nc:PersonWeightMeasure>
<nc:MeasurePointValue>150</nc:MeasurePointValue>
</nc:PersonWeightMeasure>
<im:AlienNumber>
<nc:IdentificationID>123456789</nc:IdentificationID>
</im:AlienNumber>
</nlets-niem:LEISSPerson>
</nlets-niem:LEISSPackage>
<nc:CaveatText>WANTED PERSON INFORMATION IS NOT PROVIDED IN THIS DHS QUERY FORMAT.
PLEASE QUERY NCIC FOR RECORDS RELATING TO WANTS AND WARRANTS THAT MAY BE OUTSTANDING</nc:CaveatText>
</nlets-niem:LEISSResponse>
</n2:NLETSResponseData>
</n2:NLETS>
Example 11: Response when no match is found.
<n2:NLETS n2:version="4.00"
xmlns:n2="http://www.nlets.org/niem/1.0"
xmlns:nh2="http://www.nlets.org/niem/nlets-hdr/1.0"
xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<n2:NLETSMessageHeader>
<nh2:MessageKeyCodeText>GPR</nh2:MessageKeyCodeText>
<nh2:OriginatingORIID>VTICE0000</nh2:OriginatingORIID>
<nh2:DestinationORIID>AZNLETS49</nh2:DestinationORIID>
<nh2:DocumentControlFieldText>GPREXMPL12</nh2:DocumentControlFieldText>
</n2:NLETSMessageHeader>
<n2:NLETSResponseData n2:key="GPR">
<n2:ResponseText>NO MATCHES FOUND IN LEISS SYSTEM</n2:ResponseText>
</n2:NLETSResponseData>
</n2:NLETS>