changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "appendedToExisting": {
+ "description": "True when existing_reference was given and the request was extended, not duplicated.",
+ "type": "boolean"
+ },
+ "manageUrl": {
+ "description": "Guest requests: the emailed confirm/cancel link, when one was minted (null otherwise).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "message": {
+ "description": "Customer-facing outcome; relay it as written — bookings are requests until the notary confirms.",
+ "type": "string"
+ },
+ "ok": {
+ "const": true,
+ "type": "boolean"
+ },
+ "onAccount": {
+ "description": "True when the request was filed on the signed-in customer's own account — they can then list it with my_bookings and change it with reschedule_booking / cancel_booking. Absent or false means a guest request, managed through the emailed link.",
+ "type": "boolean"
+ },
+ "ourComparableQuoteCents": {
+ "description": "request_price_match only, when computable.",
+ "type": "integer"
+ },
+ "reference": {
+ "description": "Request / order reference for check_request_status (guest tools) or my_bookings (account tools).",
+ "type": "string"
+ },
+ "status": {
+ "description": "Account tools: the booking's status after this call (Pending after book_appointment).",
+ "type": "string"
+ }
+ },
+ "required": [
+ "ok",
+ "message"
+ ],
+ "type": "object"
+}