changedOutput schema / properties / dish / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "dish": {
- "description": "The site's own name for it.",
- "type": "string"
- },
- "id": {
- "type": "string"
- },
- "pairing_count": {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- "pairings": {
- "items": {
- "additionalProperties": false,
- "properties": {
- "rank": {
- "description": "The site's own wording for how well it goes, such as 'Accord parfait'.",
- "type": "string"
- },
- "wine": {
- "description": "The wine and whatever the site writes about it, as published.",
- "type": "string"
- }
- },
- "required": [
- "rank",
- "wine"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "recipes": {
- "description": "The recipes the site links beside the dish. Read one with get_recipe.",
- "items": {
- "additionalProperties": false,
- "properties": {
- "id": {
- "type": "string"
- },
- "title": {
- "type": "string"
- },
- "url": {
- "type": "string"
- }
- },
- "required": [
- "id",
- "title",
- "url"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "style": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "The style of wine the site opens with. Null where it wrote none."
- },
- "url": {
- "type": "string"
- }
- },
- "required": [
- "id",
- "dish",
- "style",
- "pairings",
- "pairing_count",
- "recipes",
- "url"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "dish": {
+ "description": "The site's own name for it.",
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "pairing_count": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "pairings": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "rank": {
+ "description": "The site's own wording for how well it goes, such as 'Accord parfait'.",
+ "type": "string"
+ },
+ "wine": {
+ "description": "The wine and whatever the site writes about it, as published.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "rank",
+ "wine"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "recipes": {
+ "description": "The recipes the site links beside the dish. Read one with get_recipe.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "style": {
+ "description": "The style of wine the site opens with. Null where it wrote none.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "dish",
+ "style",
+ "pairings",
+ "pairing_count",
+ "recipes",
+ "url"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]