changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "articles": {
+ "description": "Array of article metadata summaries",
+ "items": {
+ "properties": {
+ "authors": {
+ "description": "List of author names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "doi": {
+ "description": "Digital Object Identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "issue": {
+ "description": "Journal issue",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "journal": {
+ "description": "Full journal name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pages": {
+ "description": "Page range",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pmid": {
+ "description": "PubMed ID",
+ "type": "string"
+ },
+ "pub_date": {
+ "description": "Publication date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pub_types": {
+ "description": "Publication types",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Article title",
+ "type": "string"
+ },
+ "url": {
+ "description": "PubMed article URL",
+ "type": "string"
+ },
+ "volume": {
+ "description": "Journal volume",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "pmid",
+ "title",
+ "authors",
+ "journal",
+ "pub_date",
+ "volume",
+ "issue",
+ "pages",
+ "pub_types",
+ "doi",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "articles"
+ ],
+ "type": "object"
+}