changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "description": {
+ "description": "Description text or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "file_page": {
+ "description": "File page URL or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "image_url": {
+ "description": "Full-size image URL or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "thumbnail": {
+ "description": "Thumbnail image or null",
+ "properties": {
+ "height": {
+ "description": "Thumbnail height in pixels",
+ "type": "number"
+ },
+ "source": {
+ "description": "Thumbnail URL",
+ "type": "string"
+ },
+ "width": {
+ "description": "Thumbnail width in pixels",
+ "type": "number"
+ }
+ },
+ "required": [
+ "source",
+ "width",
+ "height"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Title of the picture",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "description",
+ "image_url",
+ "thumbnail",
+ "file_page"
+ ],
+ "type": "object"
+}