{% extends "_section.html" %} {% block assignee_section_class %}section-selected{% endblock %} {% block section_title %}Assignee{% endblock %} {% block section_title_plural %}Assignees{% endblock %} {% block section_get_url %}/api/assignees/query?q{,f,o,s}{% endblock %} {% block section_post_url %}/api/assignees/query{% endblock %} {% block section_introduction %}
This will search for assignees matching the query string (q) and returning the data fields listed in the field string (f) sorted by the fields in the sort string (s) using options provided in the option string (o).
{% endblock %} {% block section_query_example %} {"inventor_last_name": "Whitney"} {% endblock %} {% block section_field_defaults %} assignee_id, assignee_first_name, assignee_last_name, and assignee_organization {% endblock %} {% block section_field_example %} ["patent_number", "date"] {% endblock %} {% block section_sort_default %} assignee_key_id {% endblock %} {% block section_sort_example %} [{"assignee_organization":"desc"}] {% endblock %} {% block section_get_url_example %} assignees/query?q={"_begins":{"assignee_organization":"Race"}}&f=["patent_number","patent_date","assignee_organization","assignee_id"] {% endblock %} {% block section_post_url_example %} assignees/query {% endblock %} {% block section_post_body_example %} {"q":{"_begins":{"assignee_organization":"Race"}},"f":["patent_number","patent_date","assignee_organization","assignee_id"]} {% endblock %} {% block section_examples %}Return the default fields for assignees on patents with a patent type of "utility", granted between 1999 and 2001, and whose title contains the word "Software".
Return the assignee types of all patents in NBER subcategory 22.
{{ base_url }}assignees/query?q={"nber_subcategory_id":"22"}&f=["assignee_type"]