changedInput schema / $schema
Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
addedInput schema / properties / confirmationToken
Added value: +{
+ "maxLength": 1000,
+ "type": "string"
+}
addedInput schema / properties / confirmed
Added value: +{
+ "const": true,
+ "type": "boolean"
+}
addedInput schema / properties / email / maxLength
Added value: +320
removedInput schema / properties / email / minLength
Removed value: -1
addedInput schema / properties / fieldAnswers / additionalProperties / maxLength
Added value: +2000
removedInput schema / properties / fieldAnswers / description
Removed value: -"Answers to the page's requiredFields, keyed by label."
addedInput schema / properties / fieldAnswers / propertyNames / maxLength
Added value: +60
addedInput schema / properties / fieldAnswers / propertyNames / minLength
Added value: +1
removedInput schema / properties / meetingType / description
Removed value: -"Required when the page offers more than one option."
addedInput schema / properties / name / maxLength
Added value: +200
removedInput schema / properties / purpose / description
Removed value: -"One line on why the guest wants to meet."
addedInput schema / properties / purpose / maxLength
Added value: +2000
changedInput schema / properties / requestId / description
Previous value: -"Reuse this ID when retrying the same confirmed booking request."New value: +"Reuse the ID returned by preview_booking for retries."
removedInput schema / properties / slotId / minLength
Removed value: -1
addedInput schema / properties / slotId / pattern
Added value: +"^s_\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}Z$"
addedInput schema / properties / slug / maxLength
Added value: +2048
removedInput schema / properties / timezone / description
Removed value: -"Guest IANA timezone; defaults to the host's."
addedInput schema / properties / timezone / maxLength
Added value: +100
changedInput schema / required
Previous value: -[
- "slug",
- "name",
- "email",
- "slotId"
-]New value: +[
+ "slug",
+ "name",
+ "email",
+ "slotId",
+ "confirmationToken",
+ "confirmed"
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": {},
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "message": {
+ "type": "string"
+ },
+ "nextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "nextOffset": {
+ "anyOf": [
+ {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "ok": {
+ "type": "boolean"
+ },
+ "syncStatus": {
+ "enum": [
+ "pending",
+ "ready",
+ "attention"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "ok"
+ ],
+ "type": "object"
+}