changedOutput schema / (root)
Previous value: -{
- "properties": {
- "authors": {
- "description": "List of book authors",
- "items": {
- "properties": {
- "birth_year": {
- "description": "Author birth year or null",
- "type": [
- "number",
- "null"
- ]
- },
- "death_year": {
- "description": "Author death year or null",
- "type": [
- "number",
- "null"
- ]
- },
- "name": {
- "description": "Author name",
- "type": "string"
- }
- },
- "required": [
- "name",
- "birth_year",
- "death_year"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "download_count": {
- "description": "Number of downloads",
- "type": "number"
- },
- "formats": {
- "additionalProperties": {
- "type": "string"
- },
- "description": "Available download formats and URLs",
- "type": "object"
- },
- "id": {
- "description": "Project Gutenberg book ID",
- "type": "number"
- },
- "languages": {
- "description": "Languages the book is available in",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "subjects": {
- "description": "Subject tags for the book",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "title": {
- "description": "Book title",
- "type": "string"
- }
- },
- "required": [
- "id",
- "title",
- "authors",
- "languages",
- "subjects",
- "download_count",
- "formats"
- ],
- "type": "object"
-}New value: +null