changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "inventors": {
+ "description": "List of inventor details",
+ "items": {
+ "properties": {
+ "city": {
+ "description": "Inventor city or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "first_name": {
+ "description": "Inventor first name or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_name": {
+ "description": "Inventor last name or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "patent_numbers": {
+ "description": "Patent numbers associated with inventor",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "state": {
+ "description": "Inventor state or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "query": {
+ "description": "The search query used",
+ "type": "string"
+ },
+ "returned": {
+ "description": "Number of inventors in this response",
+ "type": "number"
+ },
+ "total_results": {
+ "description": "Total number of matching inventors",
+ "type": "number"
+ }
+ },
+ "required": [
+ "query",
+ "total_results",
+ "returned",
+ "inventors"
+ ],
+ "type": "object"
+}