changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "movies": {
+ "items": {
+ "properties": {
+ "artwork_url": {
+ "description": "Artwork image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Long or short description of the movie",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "director": {
+ "description": "Director or artist name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "genre": {
+ "description": "Primary genre",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "itunes_url": {
+ "description": "iTunes store URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rating": {
+ "description": "Content advisory rating",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "release_date": {
+ "description": "Release date in YYYY-MM-DD format",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "runtime_minutes": {
+ "description": "Runtime in minutes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Movie title",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "title",
+ "director",
+ "release_date",
+ "genre",
+ "description",
+ "rating",
+ "runtime_minutes",
+ "itunes_url",
+ "artwork_url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_found": {
+ "description": "Total number of movies found",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total_found",
+ "movies"
+ ],
+ "type": "object"
+}