addedInput schema / properties / end
Added value: +{
+ "description": "ISO 8601 timestamp. Only appointments starting at or before this.",
+ "type": "string"
+}
removedInput schema / properties / limit
Removed value: -{
- "maximum": 100,
- "minimum": 1,
- "type": "integer"
-}
addedInput schema / properties / meetingTypeId
Added value: +{
+ "type": "string"
+}
addedInput schema / properties / page / description
Added value: +"0-indexed page number. Defaults to 0."
changedInput schema / properties / page / minimum
Previous value: -1New value: +0
addedInput schema / properties / pageSize
Added value: +{
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / search
Added value: +{
+ "description": "Free-text search",
+ "type": "string"
+}
addedInput schema / properties / sortBy
Added value: +{
+ "enum": [
+ "appointment.start",
+ "appointment.createdAt"
+ ],
+ "type": "string"
+}
addedInput schema / properties / sortDirection
Added value: +{
+ "enum": [
+ "ASC",
+ "DESC"
+ ],
+ "type": "string"
+}
addedInput schema / properties / start
Added value: +{
+ "description": "Only appointments starting at or after this",
+ "type": "string"
+}
addedInput schema / properties / status
Added value: +{
+ "type": "string"
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "description": "One page of appointments",
+ "properties": {
+ "appointments": {
+ "anyOf": [
+ {
+ "items": {
+ "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/appointments/anyOf/0/items/properties/id"
+ },
+ "firstname": {
+ "$ref": "#/properties/appointments/anyOf/0/items/properties/id"
+ },
+ "fullname": {
+ "$ref": "#/properties/appointments/anyOf/0/items/properties/id"
+ },
+ "id": {
+ "$ref": "#/properties/appointments/anyOf/0/items/properties/id",
+ "description": "The attendeeId other tools take"
+ },
+ "lastname": {
+ "$ref": "#/properties/appointments/anyOf/0/items/properties/id"
+ },
+ "phone": {
+ "$ref": "#/properties/appointments/anyOf/0/items/properties/id"
+ },
+ "timezone": {
+ "$ref": "#/properties/appointments/anyOf/0/items/properties/id"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "end": {
+ "$ref": "#/properties/appointments/anyOf/0/items/properties/id",
+ "description": "End, ISO 8601"
+ },
+ "hosts": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "isCancelled": {
+ "$ref": "#/properties/appointments/anyOf/0/items/properties/rescheduled"
+ },
+ "location": {
+ "description": "Where the meeting happens, as configured on the meeting type"
+ },
+ "meetingTypeId": {
+ "$ref": "#/properties/appointments/anyOf/0/items/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/appointments/anyOf/0/items/properties/id",
+ "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": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "page": {
+ "description": "0-indexed page"
+ },
+ "pageSize": {
+ "description": "Page size"
+ },
+ "total": {
+ "description": "Total matches"
+ }
+ },
+ "type": "object"
+}