changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "booking_url": {
+ "type": "string"
+ },
+ "days": {
+ "type": "number"
+ },
+ "free_slots": {
+ "items": {
+ "properties": {
+ "date": {
+ "type": "string"
+ },
+ "slots": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "date",
+ "slots"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "from": {
+ "type": "string"
+ },
+ "location": {
+ "properties": {
+ "city": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "location_ref": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "location_ref",
+ "name",
+ "city"
+ ],
+ "type": "object"
+ },
+ "other_locations": {
+ "items": {
+ "properties": {
+ "city": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "location_ref": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "location_ref",
+ "name",
+ "city"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "location",
+ "other_locations",
+ "from",
+ "days",
+ "free_slots",
+ "booking_url"
+ ],
+ "type": "object"
+}