changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "added_date": {
+ "description": "Date item was added to archive",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "creator": {
+ "description": "List of item creators",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "date": {
+ "description": "Publication or creation date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Item description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "downloads": {
+ "description": "Number of downloads",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "files": {
+ "description": "List of files (first 20)",
+ "items": {
+ "properties": {
+ "format": {
+ "description": "File format",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "md5": {
+ "description": "MD5 checksum of file",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "File name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "size_bytes": {
+ "description": "File size in bytes",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "name",
+ "format",
+ "size_bytes",
+ "md5"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "files_count": {
+ "description": "Total number of files in item",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Archive.org item identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "item_size_bytes": {
+ "description": "Total size of item in bytes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "language": {
+ "description": "Primary language of the item",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "license_url": {
+ "description": "URL to license information",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "mediatype": {
+ "description": "Media type",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "public_date": {
+ "description": "Date item was made public",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "subjects": {
+ "description": "List of subject tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Item title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Direct link to item on archive.org",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "creator",
+ "date",
+ "description",
+ "mediatype",
+ "subjects",
+ "language",
+ "license_url",
+ "added_date",
+ "public_date",
+ "downloads",
+ "files_count",
+ "item_size_bytes",
+ "url",
+ "files"
+ ],
+ "type": "object"
+}