action uspto_get_products_by_short_name { label: "Returns products along with their associated files by short names." description: "Use this GET to search for bulk data products by their short names and description. Note that \"From\" and \"To\" dates can be inputted separately as year/month/day values or as a single date string in format \"YYYY-MM-DD\".\nIf all values are entered, single date strings have a higher priority\nFor the list of default values rules, see GET /products/byname/{productName} above" provider: uspto method: GET path: "/products/{shortName}" encoding: json input: { type: "object" properties: { fromDate: { type: "string" } fromDay: { type: "string" } fromMonth: { type: "string" } fromYear: { type: "string" } hierarchy: { type: "string" } shortName: { type: "string" } toDate: { type: "string" } toDay: { type: "string" } toMonth: { type: "string" } toYear: { type: "string" } } required: ["shortName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }