action uspto_get_latest_product_files_by_product_id_and_time { label: "Returns products along with their latest files by short names." description: "Use this GET to search for latest released bulk data products by their short names and release year. The return response will include the latest files within the year specified. An error message will be returned if product(s) cannot be found for the year specified" provider: uspto method: GET path: "/products/{shortName}/latest" encoding: json input: { type: "object" properties: { hierarchy: { type: "string" } shortName: { type: "string" } year: { type: "string" } } required: ["shortName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }