changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "issn": {
+ "description": "Journal ISSN",
+ "type": "string"
+ },
+ "recent_works": {
+ "description": "Array of recent works from the journal",
+ "items": {
+ "properties": {
+ "abstract": {
+ "description": "Work abstract or summary",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "authors": {
+ "description": "List of author names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "citations": {
+ "description": "Number of citations referencing this work",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "doi": {
+ "description": "Digital Object Identifier",
+ "type": "string"
+ },
+ "journal": {
+ "description": "Journal or container title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "published": {
+ "description": "Publication date in YYYY-MM-DD format",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "publisher": {
+ "description": "Publisher name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "subjects": {
+ "description": "Subject categories or keywords",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Work title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Work type (e.g., journal-article, book)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "URL to access the work",
+ "type": "string"
+ }
+ },
+ "required": [
+ "doi",
+ "title",
+ "journal",
+ "authors",
+ "published",
+ "type",
+ "publisher",
+ "abstract",
+ "citations",
+ "subjects",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_results": {
+ "description": "Total number of works in the journal",
+ "type": "number"
+ }
+ },
+ "required": [
+ "issn",
+ "total_results",
+ "recent_works"
+ ],
+ "type": "object"
+}