Cases

Alpha Versions
Beta Versions
Stable Versions

Release Notes

0.9.0

Thursday, April 11, 2019
  • client_id is now required in the request.

0.8.1

Friday, December 14, 2018
  • Changes to claims_independent value claim_number. This now reflects the number, or number range of the claim as displayed by the patent
  • For claims that span a range, the claim_number will be listed as a string covering the range of claims. I.E 1-10 covers claim numbers 1 to 10

0.8.0

Thursday, October 25, 2018

New Features

New fields

  • pct_number
  • pct_date
  • pct_country
  • priority_number
  • priority_country
  • filing_type
  • priority_claim
  • linkage_type
  • agents
  • firms
  • ip_type
  • national_file_date

Improvements

  • Identifiers named innography_id or innography_ids were renamed to ipid and ipids.
  • Fields in the response that previously only contained publication_number now also contain ipid.

    The fields are:

    • simple_family
    • inpadoc_family
    • citations_backward
    • citations_forward

    For example:

    "simple_family": [
      "CN201988234U"
    ]
    

    is now

    "simple_family": [
      {
        "publication_number": "CN201988234U",
        "ipid": "I-000099999999"
      }
    ]
    
  • legal_status now returns the data in a JSON structure instead of stringified XML.

      "legal_status": "<legal_status><event><gazette_date>2011-09-28</gazette_date><effective_date></effective_date><legal_code>C14</legal_code><country_legal_code>CN_C14</country_legal_code><legal_code_description>GRANTED</legal_code_description><assignor></assignor><assignee></assignee><text></text><opponent_name></opponent_name></event></legal_status>"
    

    is now

      "legal_status": {
        "event": {
          "gazette_date": "2011-09-28",
          "legal_code": "C14",
          "country_legal_code": "CN_C14",
          "legal_code_description": "GRANTED"
        }
    },
    
  • art_unit_desc no longer contains the ID embedded in it.

    {
      "art_unit_id": 42,
      "art_unit_desc": "42: The Answer"
    }
    

    is now

    {
      "art_unit_id": 42,
      "art_unit_desc": "The Answer"
    }
    
  • Integer fields are now returned as integers instead of strings:

    • art_unit_id
    • assignee
    • assignee_original
    • assignee_ultimate
    • citations_backward_num
    • citations_forward_num
    • claims_first_wordcount
    • claims_count
    • simple_family_id
    • inpadoc_family_id
    • patentstrength

0.7.7

Friday, December 14, 2018
  • Changes to claims_independent value claim_number. This now reflects the number of the claim as displayed by the patent
  • For claims that span a range, only the first claim number for that range is listed
  • To get full range, please use version 0.8

0.7.6

Tuesday, September 25, 2018
  • Resolved and issue that would cause 500 errors on cases where first_page_clipping was requested, but no clippings were found.

This issue was filed to APP-19380.

0.7.5

Friday, June 22, 2018
  • status field now correctly returns ‘Active’ or ‘Expired’ rather than estimated expiration dates

0.7.4

Friday, June 1, 2018
  • Added example collection to specification

0.7.3

Friday, January 5, 2018

Fixes exceptions encountered when querying for citations.

0.7.2

Friday, December 8, 2017
  • Added new premium field patentstrength
  • Only the preferred document for a case is now returned instead of all the documents.
  • citations_backward and citations_forward now return results.

0.7.1

Friday, November 10, 2017
  • grant_date field was throwing an exception.
  • grant_number, grant_date, publication_date, grant_pulication_date, and expiration_date were not exposed by the /case endpoint.

0.7.0

Tuesday, September 26, 2017

Changes from v0.6.x

0.7 version of Cases and Case endpoint added;

The Cases and Case endpoint have been updated to now give back an array objects each containing the id and title for usc_all, ipc_all, and cpc_all. The id field is the previous value returned in the 0.6 version.

Weekly Changelog

Changes that shipped with v0.6.13 on 2017-11-03

The permissions scheme for premium fields have been overhauled for this release. Now when a client_id requests a premium field for which they do not have access, the return will contain a warning message listing the inappropriately accessed fields while still return the data.

The endpoints specific to premium field queries have been removed, and two new endpoints have been created to allow IPMS consumers to define which client_ids have access to the any given subset of premium fields. More details are in the specification.

Changes that shipped with v0.6.10 on 2017-10-13

This release implements premium endpoints for the Cases API. These will be the only endpoints through which premium fields are available. Querying the existing endpoints for premium fields will now result in an error.

Clients can access the premium endpoints at /premium/case and /premium/cases for both GET and POST requests. The PDF endpoint is unaffected.

This release also adds support for 5 additional fields to the Cases API. They are;

  • grant_number
  • grant_date
  • publication_date
  • grant_publication_date
  • expiration_date - Available as a premium field

More details are in the specification.

Other Changes;

  • Improvements to claims rendering for patent documents in several jurisdictions

0.6.21

Friday, December 14, 2018
  • Changes to claims_independent value claim_number. This now reflects the number of the claim as displayed by the patent
  • For claims that span a range, only the first claim number for that range is listed
  • To get full range, please use version 0.8

0.6.20

Friday, June 1, 2018
  • Added example collection to specification

0.6.19

Friday, January 5, 2018

Fixes exceptions encountered when querying for citations.

0.6.17

Friday, December 8, 2017
  • Added new premium field patentstrength
  • Only the preferred document for a case is now returned instead of all the documents.
  • citations_backward and citations_forward now return results.

0.6.15

Friday, November 17, 2017
  • grant_date field was throwing an exception.
  • grant_number, grant_date, publication_date, grant_pulication_date, and expiration_date were not exposed by the /case endpoint.

0.6.14

Friday, November 10, 2017

No significant changes from previous version.

0.6.13

Friday, November 3, 2017

The permissions scheme for premium fields have been overhauled for this release. Now when a client_id requests a premium field for which they do not have access, the return will contain a warning message listing the inappropriately accessed fields while still return the data.

The endpoints specific to premium field queries have been removed, and two new endpoints have been created to allow IPMS consumers to define which client_ids have access to the any given subset of premium fields. More details are in the specification.

0.6.12

Friday, October 27, 2017

No significant changes from previous version.

0.6.11

Friday, October 20, 2017

This version restores the full field set to the Cases API on both premium and non-premium endpoints. The restriction of premium fields to the premium endpoint will occur in a future version.

0.6.10

Friday, October 13, 2017

This release implements premium endpoints for the Cases API. These will be the only endpoints through which premium fields are available. Querying the existing endpoints for premium fields will now result in an error.

Clients can access the premium endpoints at /premium/case and /premium/cases for both GET and POST requests. The PDF endpoint is unaffected.

This release also adds support for 5 additional fields to the Cases API. They are;

  • grant_number
  • grant_date
  • publication_date
  • grant_publication_date
  • expiration_date - Available as a premium field

More details are in the specification.

Other Changes;

  • Improvements to claims rendering for patent documents in several jurisdictions

0.6.9

Friday, October 6, 2017

This release restricts requests to the /cases endpoint to a maximum of 100 cases per request.

0.6.8

Friday, September 29, 2017

The API specification for the Cases endpoint has been updated to reflect the current state of the API and improve documentation of the available fields for query. It has added documentation for the /cases/{innography_id}/pdf and /aagroups endpoints.

0.6.7

Friday, September 22, 2017

The 0.6.7 release of the Cases API features changes to the documentation and specification pages to improve usability and readability. Enjoy the new format, and please send any suggestions for improvements through the contact form under “Report an issue” on the sidebar.

Other changes included in this release;

  • Improved handling of documents requested with ipc_all that have empty classifications. Improved error handling around classifications.
  • The Cases API has added the feature for a PDF download of the case documents. For example, to access the PDF associated with Innography ID I-000123456789 use the URL

    /case/I-000123456789/pdf
    

    That will initiate a PDF download. More details are available in the API specification.

0.6.6

Friday, September 15, 2017

This is the initial release for which release notes are being kept. The 0.6.6 release features no significant changes from previously available versions.