changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "abstract": {
+ "description": "Patent abstract or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "assignee_organization": {
+ "description": "Assignee organization name or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Patent filing date or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "inventors": {
+ "description": "List of inventors with 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"
+ ]
+ },
+ "state": {
+ "description": "Inventor state or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "patent_number": {
+ "description": "Patent number",
+ "type": "string"
+ },
+ "title": {
+ "description": "Patent title",
+ "type": "string"
+ },
+ "type": {
+ "description": "Patent type or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "patent_number",
+ "title",
+ "abstract",
+ "date",
+ "type",
+ "inventors",
+ "assignee_organization"
+ ],
+ "type": "object"
+}