changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "abstract": {
+ "description": "Paper abstract",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "arxiv_id": {
+ "description": "ArXiv ID of the paper",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "authors": {
+ "description": "List of paper authors",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "conference": {
+ "description": "Conference name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Papers With Code paper ID",
+ "type": "string"
+ },
+ "proceeding": {
+ "description": "Proceeding identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "published": {
+ "description": "Publication date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Paper title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url_abs": {
+ "description": "URL to paper abstract",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url_pdf": {
+ "description": "URL to paper PDF",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "arxiv_id",
+ "title",
+ "abstract",
+ "authors",
+ "published",
+ "conference",
+ "proceeding",
+ "url_abs",
+ "url_pdf"
+ ],
+ "type": "object"
+}