changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "booking_url": {
+ "description": "Prefilled booking page (customer completes contact info + payment there)",
+ "type": "string"
+ },
+ "confirmed": {
+ "description": "Always false — nothing is booked by this tool",
+ "type": "boolean"
+ },
+ "guidance": {
+ "type": "string"
+ },
+ "link_label": {
+ "type": "string"
+ },
+ "link_markdown": {
+ "description": "Put this into the reply as-is (never expose the raw URL)",
+ "type": "string"
+ },
+ "next_steps": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "note": {
+ "type": "string"
+ },
+ "reply_header": {
+ "type": "string"
+ },
+ "reply_header_usage": {
+ "type": "string"
+ },
+ "summary": {
+ "description": "What is preselected on the booking page.",
+ "properties": {
+ "currency": {
+ "type": "string"
+ },
+ "items": {
+ "items": {
+ "properties": {
+ "currency": {
+ "type": "string"
+ },
+ "duration_min": {
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "price": {
+ "type": [
+ "number",
+ "string",
+ "null"
+ ]
+ },
+ "qty": {
+ "type": "integer"
+ },
+ "service": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "staff": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "shop": {
+ "type": "string"
+ },
+ "timezone": {
+ "type": "string"
+ },
+ "total_price": {
+ "type": "number"
+ },
+ "when": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "booking_url",
+ "link_markdown",
+ "confirmed"
+ ],
+ "type": "object"
+}