Field Changes
Added, Removed or Changed
v2.0 | v2.1 | Type | Description | ||||
---|---|---|---|---|---|---|---|
createstamp | removed | ||||||
updatestamp | removed | ||||||
ucidd | removed | This field was deprecated and relegated to copyField status in v2.0. v2.1 removes it. | |||||
nclms | added | tint | Total number of claims associated with document | ||||
nindepclms | added | tint | Total number of independent claims associated with document | ||||
withdrawn | added | tint | 0 or 1 value indication withdrawn status | ||||
pn | changed | The pn field is further tokenized to improve searching document numbers containing alpha-characters. Please note: this field is no longer a replica of ucid and may contain more than one string when returned in the result set. Those relying on pn as a single identifier should use ucid instead. | |||||
pd_d | added | tdate | Publication date represented internally as a date type. This addition allows efficient range faceting and all SOLR date math is possible, e.g. allowing month faceting /search/query?q=ab_en:sonar &facet=true &facet.range=pd_d &facet.start=NOW/DAY-1YEAR &facet.end=NOW/DAY+1DAY &facet.gap=+1MONTH | ||||
anucid | added | string | A non-tokenized version of the | ||||
anorig | added | alexandria_token | The original, publishing office application number format. An example US publication: US-20160061951-A1
| ||||
ad_d | added | tdate | Application filing date represented internally as a date type. See pd_d above. | ||||
priorig | added | alexandria_string | The original, publishing office priority application number format. See anorig above. | ||||
lsccd | added | alexandria_string | A concatenated phrase including CC_LSCODE_LSDATE for example "US_FPAY_20140411" searchable as: US_FPAY* | ||||
ifi_expd_d | added | tdate | Expiration as date type, see pd_d above. | ||||
f_ifi_patstat | added | string | Patent status for faceting | ||||
f_ifi_name_original | added | string | Original assignee for faceting | ||||
f_ifi_name_current | added | string | Current assignee for faceting | ||||
ifi_stdname | removed | ||||||
ifi_stdname_prob | removed | ||||||
ifi_stdname_current | removed | ||||||
ifi_name_original_confidence | added | tfloat | If the original name stems from a probable, this value will be 0, if it stems from the standard name, 1 |
Parties: Renamed
v2.0 | v2.1 | Comment |
---|---|---|
aplstd | aplepo | |
invstd | invepo | |
asgstd | asgepo | |
agtstd | agtepo | |
corstd | corepo | data currently unavailable |
exastd | exaepo | data currently unavailable |
expstd | expepo | data currently unavailable |
stdpa | f_epopa | string (facetable) representation |
stdinv | f_epoinv | string (facetable) representation |
stdagt | f_epoagt | string (facetable) representation |
stdex | f_epoex | data currently unavailable |
stdcor | f_epocor | data currently unavailable |
ifi_stdnamestd | f_ifi_name_original | see ifi_name_original_confidence above |
ifi_probnamestd | f_ifi_name_original | |
ifi_curnamestd | f_ifi_name_current |
Field Type Changes
Type | |
---|---|
alexandria_asian_text | v2.0 <fieldtype name="alexandria_asian_text" class="solr.TextField" positionIncrementGap="100"> <analyzer type="index"> <charFilter class="solr.HTMLStripCharFilterFactory" /> <tokenizer class="solr.CJKTokenizerFactory" /> </analyzer> </fieldtype> v2.1 <fieldtype name="alexandria_asian_text" class="solr.TextField" positionIncrementGap="100"> <analyzer type="index"> <charFilter class="solr.HTMLStripCharFilterFactory" /> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.CJKWidthFilterFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.CJKBigramFilterFactory" han="true" hiragana="true" katakana="true" hangul="true" outputUnigrams="false" /> </analyzer> </fieldtype> |
alexandria__token | v2.0 <fieldType name="alexandria_token" class="solr.TextField" positionIncrementGap="100"> <analyzer type="index"> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.WordDelimiterFilterFactory" splitOnCaseChange="1" splitOnNumerics="1" stemEnglishPossessive="0" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" /> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer> </fieldType> v2.1 <fieldType name="alexandria_token" class="solr.TextField" positionIncrementGap="100"> <analyzer type="index"> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.WordDelimiterFilterFactory" splitOnCaseChange="0" splitOnNumerics="1" stemEnglishPossessive="0" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" /> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer> </fieldType> |