changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "calendarId": {
+ "type": "string"
+ },
+ "events": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "attendees": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "email": {
+ "type": "string"
+ },
+ "responseStatus": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "email"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "end": {
+ "$ref": "#/properties/events/items/properties/start"
+ },
+ "htmlLink": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "location": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "start": {
+ "additionalProperties": false,
+ "properties": {
+ "date": {
+ "type": "string"
+ },
+ "dayOfWeek": {
+ "type": "string"
+ },
+ "time": {
+ "type": "string"
+ },
+ "timezone": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "date",
+ "dayOfWeek"
+ ],
+ "type": "object"
+ },
+ "status": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "updated": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "summary",
+ "start",
+ "end"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "message": {
+ "type": "string"
+ },
+ "nextPageToken": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "calendarId",
+ "events",
+ "nextPageToken"
+ ],
+ "type": "object"
+}