changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "results": {
+ "description": "Array of DOI summary records",
+ "items": {
+ "properties": {
+ "citation_count": {
+ "description": "Number of citations",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "creators": {
+ "description": "List of creator names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "datacite_url": {
+ "description": "URL to DataCite commons page for this DOI",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "doi": {
+ "description": "Digital Object Identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "download_count": {
+ "description": "Number of downloads",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "publisher": {
+ "description": "Publisher name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "resource_type": {
+ "description": "General resource type (Dataset, Software, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Primary title of the resource",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "URL to the resource",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "view_count": {
+ "description": "Number of views",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "year": {
+ "description": "Publication year",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "doi",
+ "title",
+ "creators",
+ "publisher",
+ "year",
+ "resource_type",
+ "url",
+ "citation_count",
+ "download_count",
+ "view_count",
+ "datacite_url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of results returned in this page",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total number of DOIs matching the query",
+ "type": "number"
+ },
+ "total_pages": {
+ "description": "Total number of pages available",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "total_pages",
+ "returned",
+ "results"
+ ],
+ "type": "object"
+}