changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "alternatives": {
+ "description": "Nearby bookable times when the requested time is not available",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "blocked": {
+ "description": "Present when online booking is blocked (e.g. 'inquiry_only')",
+ "type": "string"
+ },
+ "date": {
+ "type": "string"
+ },
+ "mode": {
+ "description": "Slot mode the shop operates in",
+ "type": "string"
+ },
+ "next_step": {
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "requested_time": {
+ "description": "Verdict for the exact time asked, when time was given.",
+ "properties": {
+ "available": {
+ "type": "boolean"
+ },
+ "time": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "slots": {
+ "items": {
+ "properties": {
+ "available": {
+ "type": "boolean"
+ },
+ "time": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "timezone": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "date",
+ "slots"
+ ],
+ "type": "object"
+}