changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "copyright": {
+ "description": "Copyright information or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "explanation": {
+ "description": "Explanation of the astronomy picture",
+ "type": "string"
+ },
+ "hd_url": {
+ "description": "URL to high-definition version or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "image_url": {
+ "description": "URL to the image",
+ "type": "string"
+ },
+ "media_type": {
+ "description": "Type of media (image or video)",
+ "type": "string"
+ },
+ "title": {
+ "description": "Title of the astronomy picture",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "date",
+ "explanation",
+ "image_url",
+ "hd_url",
+ "media_type",
+ "copyright"
+ ],
+ "type": "object"
+}