{ "swagger": "2.0", "info": { "description": "The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.", "version": "1.0.0", "title": "USPTO Data Set API", "contact": { "name": "Open Data Portal", "url": "https://developer.uspto.gov", "email": "developer@uspto.gov" } }, "basePath": "/ds-api", "tags": [ { "name": "oa_actions" } ], "schemes": [ "https" ], "produces": [ "application/json" ], "paths": { "/oa_actions/v1/fields": { "get": { "tags": [ "oa_actions" ], "summary": "Provides the general information about the API and the list of fields that can be used to query the dataset.", "description": "This GET API returns the list of all the searchable field names that are in the oa_actions. Please see the 'fields' attribute which returns an array of field names. Each field or a combination of fields can be searched using the syntax options shown below.", "operationId": "list-searchable-fields", "produces": [ "application/json" ], "parameters": [ { "name": "dataset", "in": "path", "description": "Name of the dataset. In this case, the default value is oa_actions", "required": true, "type": "string", "default": "oa_actions" }, { "name": "version", "in": "path", "description": "Version of the dataset.", "required": true, "type": "string", "default": "v1" } ], "responses": { "200": { "description": "The dataset api for the given version is found and it is accessible to consume.", "schema": { "type": "string" } }, "404": { "description": "The combination of dataset name and version is not found in the system or it is not published yet to be consumed by public.", "schema": { "type": "string" } } } } }, "/oa_actions/v1/records": { "post": { "tags": [ "oa_actions" ], "summary": "Provides search capability for the data set with the given search criteria.", "description": "This API is based on Solr/Lucense Search. The data is indexed using SOLR. This GET API returns the list of all the searchable field names that are in the Solr Index. Please see the 'fields' attribute which returns an array of field names. Each field or a combination of fields can be searched using the Solr/Lucene Syntax. Please refer https://lucene.apache.org/core/3_6_2/queryparsersyntax.html#Overview for the query syntax. List of field names that are searchable can be determined using above GET api.", "operationId": "perform-search", "produces": [ "application/json" ], "parameters": [ { "name": "version", "in": "path", "description": "Version of the dataset.", "required": true, "type": "string", "default": "v1" }, { "name": "dataset", "in": "path", "description": "Name of the dataset. In this case, the default value is oa_actions", "required": true, "type": "string", "default": "oa_actions" }, { "name": "criteria", "in": "formData", "description": "Uses Lucene Query Syntax in the format of propertyName:value or propertyName:[num1 TO num2]. Please refer 'docs' element in the API response for the property names and use a query syntax based on appropriate data type of the property.", "required": true, "type": "string", "default": "*:*" }, { "name": "start", "in": "formData", "description": "Starting record number. Default value is 0.", "type": "integer", "required": false, "default": "0" }, { "name": "rows", "in": "formData", "description": "Specify number of rows to be returned. If you run the search with default values, in the response you will see 'numFound' attribute which will tell the number of records available in the dataset.", "type": "integer", "required": false, "default": "100" } ], "responses": { "200": { "description": "successful operation", "schema": { "type": "array", "items": { "type": "object", "additionalProperties": { "type": "object" } } } }, "404": { "description": "No matching record found for the given criteria." } } } } } }