changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of results",
+ "type": "number"
+ },
+ "query": {
+ "description": "Search query string",
+ "type": "string"
+ },
+ "results": {
+ "description": "Array of matching people",
+ "items": {
+ "properties": {
+ "birthday": {
+ "description": "Birth date (YYYY-MM-DD)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country": {
+ "description": "2-letter country code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "deathday": {
+ "description": "Death date (YYYY-MM-DD) or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "gender": {
+ "description": "Gender (Male, Female, etc)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "TVMaze person ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "image": {
+ "description": "Photo URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Person name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "score": {
+ "description": "Match score from search",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "tvmaze_url": {
+ "description": "TVMaze person page URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "query",
+ "count",
+ "results"
+ ],
+ "type": "object"
+}