Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

CLAIMS Direct

CLAIMS Direct is a web service that provides access to the IFI CLAIMS Global Patent Database, a Data Warehouse that contains patent records from over 90 patenting authorities stored in a common xml format. Each publication, including all published applications and granted patents, is represented by a separate record in the data.


The Data Warehouse is indexed in SOLR, the fast open-source enterprise search platform from the Apache Lucene project. The search interface is a single search box, into which you can type simple or complex queries. The data warehouse is searchable by field; field names and sample searches are provided in the table below.

Introduction to CLAIMS SOLR Search Basics

Boolean Operators

The SOLR index supports AND, OR, NOT as Boolean operators. Boolean operators must be ALL CAPS. If you enter these operators in lower case letters, the system will search them as terms.

...

OR
The OR operator links two terms and finds a matching document if either of the terms exist in a document. This is equivalent to a union using sets. The symbol || can be used in place of the word OR.
For example, to search for documents that contain either "solar energy" or "wind power," use the following query: "solar energy" OR "wind power"

Default Operator

In CLAIMS DIrect, the default operator is AND. This means that if no operator is specified, the system assumes AND. In the above examples, we explicitly included the operator in all cases for purposes of clarity.

 Default Fields

When no field is specified in the query, the search is directed to the title, abstract, description and claims fields.

 Wildcards

? -- Use the question mark to represent a single character (one and only one) at the end or within a word. To search for British or American spellings, use a query like this: sterili?e

...

Note: You cannot use a * or ? symbol as the first character of a search.

Range Searching

Range Queries allow you to match documents whose field(s) values are between the lower and upper bound specified by the Range Query.

...

 

pd:[20020101 TO 20030101]

Phrases and Proximity

A phrase is a group of words surrounded by double quotes, such as "fuel cell." To retrieve only documents containing the phrase exactly as searched, place the phrase within quotes, as shown in the example below:

...

{!complexphrase}ab:"(thermal OR thermic OR thermo) barrier"~8

Fuzzy Search 

This upgrade to SOLR 4.8.1 also allows for fuzzy search based on the Levenshtein Distance. A fuzzy search query returns terms similar to the queried term. (See http://lucene.apache.org/core/2_9_4/queryparsersyntax.html#Fuzzy%20Searches for more information about fuzzy searches.)

...

{!complexphrase}ttl_en:"(thermal~ NOT dermal) barrier"~3


 Case Sensitivity

Searches in CLAIMS® SOLR are not case sensitive. Search terms may be entered in caps or lower case, regardless of case in the documents.

Note: You must enter Operators must in ALL CAPS and enter field names in lower case.

 

 Complex Queries ( For Example: Queries Including Criteria in Multiple Fields)

Searches in CLAIMS SOLR can include multiple search fields and multiple criteria per field. A few examples are provided to illustrate these more complex queries. Please consult the table at the end of this document for descriptions and additional search examples on a field-by-field basis.

...

Important Information:
  • Since the field names are case sensitive, always use lower case letters
  • Capitalize operators (AND, OR, NOT, TO)
  • Use straight quotes to enclose phrases. (Note: This is an issue only if you are cutting/pasting from another source where "smart quotes" may have been used.)


The Filter Query Box

You can use a filter query to restrict the superset of documents that are returned by the standard query There are two advantages to using the filter query rather than including the restriction with your standard query: (1) The filter query does not affect score, and (2) It can increase the speed of complex queries since the filter query results are cached.

...

Options are shown in tabs on the upper right segment of the screen and include the following: General, Group, Facet, and More Like This (MLT). * You must select the Group, Facet, and More Like This (MLT) features using the Enable checkbox before you execute the search. The same tabs are present in the display section of the screen.

General

The General option allows selection of the fields you want to display in the result list, the order in which the results should be sorted, the number of rows to display per page, and the timeout (in seconds).

Group

The Result Grouping option groups documents with a common field in like categories and returns the top documents for each category. Fields available for grouping must be single-value fields. When Group is enabled, the default result list is grouped. Note: When the Group option is enabled, the More Like This (MLT) option is disabled. Within the Group option, you can enable the following options:

  • Enable: Toggles the feature on/off
  • Field: Allows selection a grouping parameter from the fields listed in the dropdown.
  • Limit:  Controls the number of documents to display in each group.
  • Sort: Determines the order of the group members. Any fields can be used in ascending (ASC) or descending (DSC) order.
  • Query: Performs like a sub-search in the groups. The input format is the same as for the standard search.
  • Func--: Function queries use functions and allow you to generate a relevancy score using the actual value of one or more numeric fields.


Facet

Faceting is the arrangement of search results into categories based on indexed terms. Facets are expressed in tabular and graphic formats. Within the Facet option, you can enable the following options:

...

  1. Click the small > to the left of the facet-field name to expand the list.
  2. Double-click on the facet-field name on this screen to open the graphic display on the right side of the screen.
  3. Under the Settings button, select the style of the graphic and Export the graphic as PNG or JPEG.

 


More Like This (MLT)

 

More Like This constructs a query using terms from the selected document(s) to find similar documents. When More Like This is enabled, each document in the result set is processed to find similar documents, which are listed for each document in the result set. MLT contains the following features:

  • Enable: Toggles the feature on/off
  • Field: Allows selection of a More Like This parameter from the fields listed in the dropdown, either in the title or abstract search fields.
  • Count: Specifies the number of similar documents to be returned for each result.
  • Terms: Control how the MLT component presents the "interesting" terms (the top TF/IDF terms) for the query.  List lists terms; Details also lists boost value.
  • Min. tf: Specifies the Minimum Term Frequency, below which words will be ignored in the source document.
  • Min. df: Specifies the Minimum Document Frequency. (Words that do not occur in at least "this many" documents will be ignored)
  • Max. df: Specifies the Maximum Document Frequency. (Words that occur in more than "this many" documents will be ignored.)
  • Boost: Specifies if the query will be boosted by the "interesting" term relevance.
  • Max. qt: Sets the maximum number of query terms to be included in the generated query.
  • Max. wl: Sets the maximum word length.
  • Min. wl: Sets the minimum word length.
  • Qf: Query fields and their boosts.
Displaying More Like This Results

The display of the More Like This results is similar to that of grouped results. Each document in the result set has an option to display the similar documents. To do so, click the small > to the left of each document in the list.

...