The collection of UMF segments that structure the incoming
data to create an attribute alert.
These required UMF elements and segments comprise the
UMF_PSEARCH input document:
- DSRC_CODE
- Data source code UMF tag that is required, because it references
and identifies the calling application. As part of normal pipeline
logging, this data source code is logged in the UMF_LOG table for
each processed UMF_SEARCH.
- The system is already configured with a data source code, 1589,
that can be used for all Web services pipeline searches. This data
source code performs entity resolution processing without resolving
the incoming search criteria with the entity in the entity database
that matches the search. You can create your own data source code
for a particular calling application, just be sure that the data source
code is set to not resolve entities.
- DSRC_ACCT
- The unique ID for the attribute alert in the data source in the
system.
- DSRC_REF
- Data source reference UMF tag that is required, because it references
the requesting message transaction and is returned to the calling
application.
- ENTITY_TYPE
- Use the value SEARCH
- FORMAT_CODE
- UMF tag that correlates to a UMF output document format that is
specified in the UMF_FORMAT_CODE table.
- Use the value EAS_APP_SEARCH
- SEARCH
- The root data segment contains information specifying the parameters
for a search.
You then specify the optional search criteria
using the other available UMF segments and their valid tags for names,
addresses, numbers, characteristics, and e-mail addresses.
- NAME
- Search for name attributes that define the name of the person,
organization, place or item, as defined by the entity model and the
incoming identity.
- NUMBER
- Search for number attributes that are comprised of data that is
usually described as a number, such as credit card numbers, phone
numbers, and passport numbers.
- ADDRESS
- Search for address attributes that define a location of the identity
and typically contain standard address information: street name and
number, unit or building number, city, state, country, and postal
code.
- ATTRIBUTE
- Search for characteristic attributes that define other identity
traits or information that is not expressed through the other kinds
of attributes.
- EMAIL
- Search for e-mail attributes that define Internet e-mail addresses.
The following UMF_PSEARCH input entered by user
<SYS_CREATE_US>LeChuck</SYS_CREATE_US> will
search for an entity with a
<MIN_LIKE_SCORE>75</MIN_LIKE_SCORE> until
<SYS_EXPIRE_DT>01/01/2112</SYS_EXPIRE_DT> that
has:
- <NAME> segments <FIRST_NAME>Guybrush</FIRST_NAME> and <LAST_NAME>Threepwood</LAST_NAME>.
- <NUMBER> segments <NUM_TYPE>SSN</NUM_TYPE> and <NUM_VALUE>123-99-1234</NUM_VALUE>.
- <ADDRESS> segments <ADDR_TYPE>H</ADDR_TYPE>, <ADDR1>123
main</ADDR1>, <CITY>Melee</CITY>,
and <STATE>NV</STATE>.
<UMF_PSEARCH>
<DSRC_CODE>100</DSRC_CODE>
<DSRC_ACCT>Search-1</DSRC_ACCT>
<DSRC_REF>1</DSRC_REF>
<ENTITY_TYPE>SEARCH</ENTITY_TYPE>
<FORMAT_CODE>EAS_APP_SEARCH</FORMAT_CODE>
<SEARCH>
<SYS_EXPIRE_DT>01/01/2112</SYS_EXPIRE_DT>
<MIN_LIKE_SCORE>75</MIN_LIKE_SCORE>
<USER_TEXT_1>disk 23</USER_TEXT_1>
<REASON_CODE>wanted</REASON_CODE>
<SYS_CREATE_US>LeChuck</SYS_CREATE_US>
</SEARCH>
<NAME>
<NAME_TYPE>M</NAME_TYPE>
<FIRST_NAME>Guybrush</FIRST_NAME>
<LAST_NAME>Threepwood</LAST_NAME>
</NAME>
<NUMBER>
<NUM_TYPE>SSN</NUM_TYPE>
<NUM_VALUE>123-99-1234</NUM_VALUE>
</NUMBER>
<ADDRESS>
<ADDR_TYPE>H</ADDR_TYPE>
<ADDR1>123 main</ADDR1>
<CITY>Melee</CITY>
<STATE>NV</STATE>
</ADDRESS>
</UMF_PSEARCH>