changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "accuracy_url": {
+ "type": "string"
+ },
+ "attribution": {
+ "type": "string"
+ },
+ "data_as_of": {
+ "type": "string"
+ },
+ "film_count": {
+ "type": "number"
+ },
+ "films": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "directors": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "first_night": {
+ "type": "string"
+ },
+ "genres": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "key": {
+ "type": "string"
+ },
+ "opening_venues": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "runtime_min": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "slug": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ },
+ "year": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "key",
+ "slug",
+ "title",
+ "year",
+ "runtime_min",
+ "genres",
+ "directors",
+ "url",
+ "first_night",
+ "opening_venues"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "horizon_days": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "data_as_of",
+ "attribution",
+ "accuracy_url",
+ "horizon_days",
+ "film_count",
+ "films"
+ ],
+ "type": "object"
+}