changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "description": "The moved appointment",
+ "properties": {
+ "appointment": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "description": "An appointment with its derived status",
+ "properties": {
+ "attendees": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": true,
+ "description": "A person on an appointment",
+ "properties": {
+ "email": {
+ "$ref": "#/properties/appointment/anyOf/0/properties/id"
+ },
+ "firstname": {
+ "$ref": "#/properties/appointment/anyOf/0/properties/id"
+ },
+ "fullname": {
+ "$ref": "#/properties/appointment/anyOf/0/properties/id"
+ },
+ "id": {
+ "$ref": "#/properties/startUtc",
+ "description": "The attendeeId other tools take"
+ },
+ "lastname": {
+ "$ref": "#/properties/appointment/anyOf/0/properties/id"
+ },
+ "phone": {
+ "$ref": "#/properties/appointment/anyOf/0/properties/id"
+ },
+ "timezone": {
+ "$ref": "#/properties/appointment/anyOf/0/properties/id"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "end": {
+ "$ref": "#/properties/startUtc",
+ "description": "End, ISO 8601"
+ },
+ "hosts": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "$ref": "#/properties/startUtc"
+ },
+ "isCancelled": {
+ "$ref": "#/properties/appointment/anyOf/0/properties/rescheduled"
+ },
+ "location": {
+ "description": "Where the meeting happens, as configured on the meeting type"
+ },
+ "meetingTypeId": {
+ "$ref": "#/properties/appointment/anyOf/0/properties/id"
+ },
+ "notes": {
+ "description": "Host-side note and booking-form answers"
+ },
+ "rescheduled": {
+ "description": "Present and true when the appointment was moved at least once",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "start": {
+ "$ref": "#/properties/startUtc",
+ "description": "Start, ISO 8601"
+ },
+ "status": {
+ "anyOf": [
+ {
+ "enum": [
+ "confirmed",
+ "cancelled"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Derived by this server: never report a cancelled appointment as upcoming"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "An appointment with its derived status"
+ },
+ "bookingState": {
+ "anyOf": [
+ {
+ "const": "confirmed",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "startUtc": {
+ "description": "The new start, ISO 8601 UTC",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+}