changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "abs_url": {
+ "description": "URL to abstract page",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "arxiv_id": {
+ "description": "arXiv identifier",
+ "type": "string"
+ },
+ "authors": {
+ "description": "List of author names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "categories": {
+ "description": "List of arXiv category tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "comment": {
+ "description": "Author comment if present",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "doi": {
+ "description": "Digital Object Identifier if available",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "journal_ref": {
+ "description": "Journal reference if published",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pdf_url": {
+ "description": "URL to PDF version",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "primary_category": {
+ "description": "Primary arXiv category",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "published": {
+ "description": "Publication date (ISO 8601)",
+ "type": "string"
+ },
+ "summary": {
+ "description": "Paper abstract/summary",
+ "type": "string"
+ },
+ "title": {
+ "description": "Paper title",
+ "type": "string"
+ },
+ "updated": {
+ "description": "Last update date (ISO 8601)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "arxiv_id",
+ "title",
+ "summary",
+ "authors",
+ "categories",
+ "published",
+ "updated"
+ ],
+ "type": "object"
+}