action uspto_get_product_sub_tree { label: "Returns products' hierarchical subtree." description: "Use this GET to search for bulk data products by their short names. This works almost like products/tree GET, the difference is that it returns subtree data starting from a particular tree node (i.e. the GET returns all children if parent short name is entered). If a product cannot be found by its short name (has to be exact match and is not case sensitive), then an error message will appear in response body." provider: uspto method: GET path: "/products/tree/{shortName}" encoding: json input: { type: "object" properties: { shortName: { type: "string" } } required: ["shortName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }