changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "country": {
+ "description": "ISO 3166-1 alpha-2 country code",
+ "type": "string"
+ },
+ "date": {
+ "description": "Schedule date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "schedule": {
+ "items": {
+ "properties": {
+ "airtime": {
+ "description": "Air time in HH:MM format",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "episode": {
+ "description": "Episode number in season",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "episode_name": {
+ "description": "Episode name",
+ "type": "string"
+ },
+ "network": {
+ "description": "Network or web channel name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "runtime_minutes": {
+ "description": "Episode runtime in minutes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "season": {
+ "description": "Season number",
+ "type": "number"
+ },
+ "show_name": {
+ "description": "Name of the show",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "airtime",
+ "show_name",
+ "network",
+ "episode_name",
+ "season",
+ "episode",
+ "runtime_minutes"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_airings": {
+ "description": "Total number of airings on this date",
+ "type": "number"
+ }
+ },
+ "required": [
+ "country",
+ "date",
+ "total_airings",
+ "schedule"
+ ],
+ "type": "object"
+}